-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (72 loc) · 2.48 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en" id="html">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="fonts.googleapis.com/css?family=Lato" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0"
/>
</head>
<body>
<div class="card-container" id="wrapper">
<div class="card card-1">
<img
src="https://images.pexels.com/photos/320014/pexels-photo-320014.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2"
alt="cat picture"
class="img"
/>
</div>
<div class="card card-2">
<img
src="https://images.pexels.com/photos/51439/pexels-photo-51439.jpeg?auto=compress&cs=tinysrgb&w=750&h=750&dpr=2"
alt="cat picture"
class="img"
/>
</div>
<div class="card card-3">
<img
src="https://images.pexels.com/photos/667228/pexels-photo-667228.jpeg?auto=compress&cs=tinysrgb&w=750&h=750&dpr=2"
alt="cat picture"
class="img"
/>
</div>
<div class="card card-4">
<img
src="https://images.pexels.com/photos/20787/pexels-photo.jpg?auto=compress&cs=tinysrgb&w=1333&h=750&dpr=2"
alt="cat picture"
class="img"
/>
</div>
<div class="card card-5">
<img
src="https://images.pexels.com/photos/2558605/pexels-photo-2558605.jpeg?auto=compress&cs=tinysrgb&w=1333&h=750&dpr=2"
alt="cat picture"
class="img"
/>
</div>
<div class="card card-6">
<img
src="https://images.pexels.com/photos/2361952/pexels-photo-2361952.jpeg?auto=compress&cs=tinysrgb&w=750&h=750&dpr=2"
alt="cat picture"
class="img"
/>
</div>
</div>
<span class="material-symbols-outlined" onclick="switchThemes()">
nightlight
</span>
<p class="credits" id="credits">
made with <a href="https://www.pexels.com/">pexels</a>
</p>
<script src="script.js"></script>
</body>
</html>