This repository has been archived by the owner on Dec 21, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (70 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gallery</title>
<link rel="stylesheet" href="./public/css/main.css">
</head>
<body>
<div class="app">
<header class="profile__header">
<h1>Rodney Cotton</h1>
<h2>Helsinki, Finland</h2>
<aside class="profile__avatar">
<figure>
<img src="./public/img/profilePhoto.png" alt="">
</figure>
</aside>
</header>
<section class="stats">
<ol>
<li class="stats__item">
<p><span>100</span> Posts</p>
</li>
<li class="stats__item">
<p><span>2,242</span> Follower</p>
</li>
<li class="stats__item">
<p><span>1,432</span> Following</p>
</li>
</ol>
</section>
<section class="gallery">
<figure class="gallery__item">
<a href="#">
<img src="./public/img/photo1.png" alt="">
</a>
</figure>
<figure class="gallery__item--wide">
<a href="#">
<img src="./public/img/photo2.png" alt="">
</a>
</figure>
<figure class="gallery__item--wide">
<a href="#">
<img src="./public/img/photo3.png" alt="">
</a>
</figure>
<figure class="gallery__item--tall">
<a href="#">
<img src="./public/img/photo4.png" alt="">
</a>
</figure>
<figure class="gallery__item">
<a href="#">
<img src="./public/img/photo5.png" alt="">
</a>
</figure>
<figure class="gallery__item">
<a href="#">
<img src="./public/img/photo6.png" alt="">
</a>
</figure>
</section>
<footer>
<p>Thinkverse © <a href="https://devchallenges.io">DevChallenges.io</a></p>
</footer>
</div>
</body>
</html>