-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·54 lines (48 loc) · 1.98 KB
/
Copy pathindex.html
File metadata and controls
executable file
·54 lines (48 loc) · 1.98 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="assets/favicon/devchallenges.png" type="image/x-icon">
<link rel="stylesheet" href="css/style.css">
<title>My Gallery</title>
</head>
<body>
<div class="container">
<header>
<div class="box-top">
<img src="assets/images/profilePhoto.png" alt="Image">
<h3 class="name">Rodney Cotton</h3>
<p class="country">Helsinki, Finland</p>
</div>
<div class="box-bottom">
<div class="box">
<p class="number">100</p>
<div class="title">Posts</div>
</div>
<div class="box">
<p class="number">2,242</p>
<div class="title">Follower</div>
</div>
<div class="box">
<p class="number">1,432</p>
<div class="title">Following</div>
</div>
</div>
</header>
<section class="gallery">
<img src="assets/images/photo1.png" class="image1 image" alt="Image 1">
<img src="assets/images/photo2.png" class="image2 image" alt="Image 2">
<img src="assets/images/photo3.png" class="image3 image" alt="Image 3">
<img src="assets/images/photo6.png" class="image4 image" alt="Image 4">
<img src="assets/images/photo5.png" class="image5 image" alt="Image 5">
<img src="assets/images/photo4.png" class="image6 image" alt="Image 6">
</section>
<footer>
<p>Keiler Guardo <a href="https://devchallenges.io/challenges">@DevChallenges.io</a></p>
</footer>
</div>
<script src="js/app.js"></script>
</body>
</html>