-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (104 loc) · 3.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./css/style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!-- This is the main nav -->
<nav>
<div id="destinations">
<p>My Web Design Site</p>
<p>Learn Design</p>
<p>Find Inspiration</p>
<p>Get Hired</p>
</div>
<div id="actions">
<p>🔍</p>
<p>Sign in</p>
<button>Sign up</button>
</div>
</nav>
<!-- This is the hero content -->
<section id="hero">
<div id="headers">
<h1>Explore the world's best web designs.</h1>
<h2>Created by top-rated design and creative professionals.</h2>
</div>
<input type="text" placeholder="Search web designs..."/>
<div class="trending">
<b>Trending searches</b>
<p>Minimalist</p>
<p>Nature</p>
<p>Night sky</p>
<p id="personal">Personal blog</p>
</div>
</section>
<!-- This is the subnav -->
<div id="subnav">
<button id="sort">Popular</button>
<button id="filter">Filter</button>
</div>
<!-- This is the main content of the page -->
<main>
<article class="card">
<div class="img-placeholder"></div>
<div class="card-footer">
<h3>Design preview</h3>
<p>❤️ 400 Likes</p><p>👁️ 983 Views</p>
</div>
</article>
<article class="card">
<div class="img-placeholder"></div>
<div class="card-footer">
<h3>Design preview</h3>
<p>❤️ 347 Likes</p><p>👁️ 977 Views</p>
</div>
</article>
<article class="card">
<div class="img-placeholder"></div>
<div class="card-footer">
<h3>Design preview</h3>
<p>❤️ 226 Likes</p><p>👁️ 722 Views</p>
</div>
</article>
<article class="card">
<div class="img-placeholder"></div>
<div class="card-footer">
<h3>Design preview</h3>
<p>❤️ 86 Likes</p><p>👁️ 432 Views</p>
</div>
</article>
<article class="card">
<div class="img-placeholder"></div>
<div class="card-footer">
<h3>Design preview</h3>
<p>❤️ 84 Likes</p><p>👁️ 550 Views</p>
</div>
</article>
<article class="card">
<div class="img-placeholder"></div>
<div class="card-footer">
<h3>Design preview</h3>
<p>❤️ 78 Likes</p><p>👁️ 320 Views</p>
</div>
</article>
<article class="card">
<div class="img-placeholder"></div>
<div class="card-footer">
<h3>Design preview</h3>
<p>❤️ 64 Likes</p><p>👁️ 301 Views</p>
</div>
</article>
<article class="card">
<div class="img-placeholder"></div>
<div class="card-footer">
<h3>Design preview</h3>
<p>❤️ 54 Likes</p><p>👁️ 201 Views</p>
</div>
</article>
</main>
</body>
</html>