-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (54 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="author" content="Dennis C">
<meta name="description" content="My gallery page demo project for 'Responsive Web Developer' path at devChallenges.io">
<meta name="keywords" content="web development, html, css, Responsive Design, Figma, 404 Page, demo">
<title>My Gallery</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap" rel="stylesheet">
<!-- CSS File -->
<link rel="stylesheet" href="style.css">
</head>
<body class="page-wrapper">
<!-- Header -->
<header class="profile">
<img src="/assets/profilePhoto.png" alt="Rodney Cotton" width="624" height="624">
<h1>Rodney Cotton</h1>
<p>Helsinki, Finland</p>
<div class="stats-wrapper">
<div class="stats">
<p>100</p>
<p>Posts</p>
</div>
<div class="stats">
<p>2242</p>
<!--TODO format number with comma-->
<p>Followers</p>
</div>
<div class="stats">
<p>1432</p>
<p>Following</p>
</div>
</div>
</header>
<!-- Pictures -->
<section class="masonry-grid">
<img src="/assets/photo1.png" alt="interior design" width="598" height="598">
<img src="/assets/photo2.png" alt="interior design" width="598" height="598">
<img src="/assets/photo3.png" alt="interior design" width="598" height="598">
<img src="/assets/photo_4.png" alt="interior design" width="598" height="598">
<img src="/assets/photo6.png" alt="interior design" width="598" height="598">
<img src="/assets/photo5.png" alt="interior design" width="598" height="598">
</section>
<!-- Footer -->
<footer>
<p> created by <b><u>Dennis</u></b> -devChallenges.io</p>
</footer>
</body>
</html>