-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
155 lines (150 loc) · 5.78 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="styles/home.css">
<link rel="stylesheet" href="./style.css">
<title>Postagram - [page subtitle here]</title>
</head>
<body>
<header class="mobile">
<a href="./index.html">
<h1>Postagram</h1>
</a>
<button>
<img src="./images/add.circle.svg" alt="add circle icon">
</button>
</header>
<header class="desktop">
<a href="./index.html">
<h1>Postagram</h1>
</a>
<nav>
<a class="desktop-nav-item" href="./index.html">
<img src="./images/hem.svg" alt="home icon">
Home
</a>
<a class="desktop-nav-item" href="./explore.html">
<img src="./images/sök.svg" alt="explore icon">
Explore
</a>
<a class="desktop-nav-item" href="./detail.html">
<img src="./images/gilla.svg" alt="favorites icon">
Favorites
</a>
<a class="desktop-nav-item" href="./profile.html">
<img src="https://picsum.photos/seed/fa/300/300" alt="" class="profil-bild">
Profile
</a>
</nav>
</header>
<main>
<div class="post">
<div class="inl">
<div class="container">
<img src="https://picsum.photos/seed/fa/300/300" alt="profilepicture" class="profilepicture">
<div id="name-likes">
<h2>name</h2>
<p id="likes">3532 likes</p>
</div>
<button>
<img src="images/heart.svg" alt="heart button">
</button>
</div>
<div class="stacked">
<img src="https://picsum.photos/seed/jiuiwfhf/500/500" alt="">
<div class="stacked-text">
<h2 >
Post lorem ipsim dolore post ipsu dolore gene lommo cerdo
</h2>
</div>
</div>
</div>
</div>
<div class="post">
<div class="inl">
<div class="container">
<img src="https://picsum.photos/seed/fa/300/300" alt="profilepicture" class="profilepicture">
<div id="name-likes">
<h2>name</h2>
<p id="likes">3532 likes</p>
</div>
<button>
<img src="images/heart.svg" alt="heart button">
</button>
</div>
<div class="stacked">
<img src="https://picsum.photos/seed/jiuiwhf/500/500" alt="">
<div class="stacked-text">
<h2 >
Post lorem ipsim dolore post ipsu dolore gene lommo cerdo
</h2>
</div>
</div>
</div>
</div>
<div class="post">
<div class="inl">
<div class="container">
<img src="https://picsum.photos/seed/fa/300/300" alt="profilepicture" class="profilepicture">
<div id="name-likes">
<h2>name</h2>
<p id="likes">3532 likes</p>
</div>
<button>
<img src="images/heart.svg" alt="heart button">
</button>
</div>
<div class="stacked">
<img src="https://picsum.photos/seed/ji111uiwhf/500/500" alt="">
<div class="stacked-text">
<h2 >
Post lorem ipsim dolore post ipsu dolore gene lommo cerdo
</h2>
</div>
</div>
</div>
</div>
<div class="post">
<div class="inl">
<div class="container">
<img src="https://picsum.photos/seed/fa/300/300" alt="profilepicture" class="profilepicture">
<div id="name-likes">
<h2>name</h2>
<p id="likes">3532 likes</p>
</div>
<button>
<img src="images/heart.svg" alt="heart button">
</button>
</div>
<div class="stacked">
<img src="https://picsum.photos/seed/jiuh243iwhf/500/500" alt="">
<div class="stacked-text">
<h2 >
Post lorem ipsim dolore post ipsu dolore gene lommo cerdo
</h2>
</div>
</div>
</div>
</div>
</main>
<footer>
<nav>
<a href="./index.html" class="nav-item">
<img src="./images/hem.svg" alt="home icon">
</a>
<a href="./explore.html" class="nav-item">
<img src="./images/sök.svg" alt="explore icon">
</a>
<a href="./detail.html" class="nav-item">
<img src="./images/gilla.svg" alt="favorites icon">
</a>
<a href="./profile.html" class="nav-item">
<img src="https://picsum.photos/seed/fa/300/300" alt="" class="profil-bild">
</a>
</nav>
</footer>
</body>
</html>