-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (84 loc) · 3.65 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<html>
<head>
<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=Source+Sans+3:wght@300;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<header>
<img class = "logo-img" src="images/logo.png" alt="oldagram written in black">
<img class = "profile-img" src="images/user-avatar.png" alt="selfie of the user">
</header>
<section>
<div class="user-info">
<img class="profile-img" src="images/avatar-vangogh.jpg" alt="profle-img-of-Vincent-Van-gogh">
<div>
<h4>Vincent van Gogh</h4>
<p>Zudert, Netherlands</p>
</div>
</div>
<img class="post-img" src="images/post-vangogh.jpg" alt="post-by-vangogh">
<div class="post-info">
<div class="icons-box">
<img class="icons" src="images/icon-heart.png" alt="">
<img class="icons" src="images/icon-comment.png" alt="">
<img class="icons" src="images/icon-dm.png" alt="">
</div>
<h5 class="likes">22,223 likes</h5>
<div>
<h4>vincey1853</h4>
<p>just took a few mushrooms lol</p>
</div>
</div>
</section>
<section>
<div class="user-info">
<img class="profile-img" src="images/avatar-courbet.jpg" alt="profle-img-of-courbet">
<div>
<h4>Gutave Courbet</h4>
<p>Ornans, France</p>
</div>
</div>
<img class="post-img" src="images/post-courbet.jpg" alt="post-by-corbet">
<div class="post-info">
<div class="icons-box">
<img class="icons" src="images/icon-heart.png" alt="">
<img class="icons" src="images/icon-comment.png" alt="">
<img class="icons" src="images/icon-dm.png" alt="">
</div>
<h5 class="likes">12,223 likes</h5>
<div>
<h4>gus1819</h4>
<p>i'm feeling a bit stressed tbh</p>
</div>
</div>
</section>
<section>
<div class="user-info">
<img class="profile-img" src="images/avatar-ducreux.jpg" alt="profle-img-of-Joseph Durcreux">
<div>
<h4>Gutave Courbet</h4>
<p>Ornans, France</p>
</div>
</div>
<img class="post-img" src="images/post-ducreux.jpg" alt="post-by-Joseph-Ducreux">
<div class="post-info">
<div class="icons-box">
<img class="icons" src="images/icon-heart.png" alt="">
<img class="icons" src="images/icon-comment.png" alt="">
<img class="icons" src="images/icon-dm.png" alt="">
</div>
<h5 class="likes">18,823 likes</h5>
<div>
<h4>jd1735</h4>
<p>gm friends! which coin are YOU stacking up today?? post below WAGM!</p>
</div>
</div>
</section>
</div>
<script src="index.js"></script>
</body>
</html>