-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
170 lines (158 loc) · 6.49 KB
/
index.html
File metadata and controls
170 lines (158 loc) · 6.49 KB
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reddit</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap" rel="stylesheet">
<!-- Font-awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/css/all.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="./assets/stylesheet/style.css">
<script src="./assets/js/index.js" defer></script>
</head>
<body>
<div class="back-to-top">
<a href="#header">
<button class="back-to-top-btn">BACK TO TOP</button>
</a>
</div>
<header id="header" class="header">
<div class="container flex">
<a href="#" class="brand">
<h3>
<i class="fab fa-reddit"></i>
reddit
</h3>
</a>
<div class="search-subreddit">
<form action="#" class="search-form">
<button class="search-btn" type="submit"><i class="fas fa-search"></i></button>
<input type="text" class="input-search" placeholder="Search">
</form>
</div>
<nav>
<ul class="nav-menu flex">
<li class="nav-item">
<a class="btn btn-login" href="#">
LOG IN
</a>
</li>
<li class="nav-item">
<a class="btn" href="#">
SIGNUP
</a>
</li>
</ul>
</nav>
</div>
</header>
<section class="blue-section">
</section>
<section class="subreddit-info-section">
<div class="root-container subreddit-info-section-root">
</div>
<!-- Reddit subreddit info and r/HTML -->
</section>
<section class="root-content-section">
<div class="root-container">
<div class="redditcontent">
<div class="reddit-content-chooser">
<button data-active="hot" class="reddit-content-chooser-btn">
<span>
<i class="fas fa-burn"></i>
</span>
Hot
</button>
<button data-active="new" class="reddit-content-chooser-btn">
<span>
<i class="fas fa-certificate"></i>
</span>
New
</button>
<button data-active="top" class="reddit-content-chooser-btn">
<span>
<i class="fas fa-arrow-up"></i>
</span>
Top
</button>
<button data-active="rising" class="reddit-content-chooser-btn">
<span>
<i class="fas fa-chart-line"></i>
</span>
Rising
</button>
</div>
<div class="reddit-content-cards-root">
</div>
</div>
<div class="infocards">
<div class="about-root">
</div>
<div class="filter-flair-root">
</div>
<div class="static-help-card">
<div class="just-flex">
<div class="help-card-left col-1-2">
<ul>
<li class="help-list-item">
<a href="#">Help</a>
</li>
<li class="help-list-item">
<a href="#">Reddit App</a>
</li>
<li class="help-list-item">
<a href="#">Reddit Coins</a>
</li>
<li class="help-list-item">
<a href="#">Reddit Premium</a>
</li>
<li class="help-list-item">
<a href="#">Reddit Gifts</a>
</li>
</ul>
</div>
<div class="help-card-right col-1-2">
<ul>
<li class="help-list-item">
<a href="#">About</a>
</li>
<li class="help-list-item">
<a href="#">Careers</a>
</li>
<li class="help-list-item">
<a href="#">Press</a>
</li>
<li class="help-list-item">
<a href="#">Advertise</a>
</li>
<li class="help-list-item">
<a href="#">Blog</a>
</li>
<li class="help-list-item">
<a href="#">Terms</a>
</li>
<li class="help-list-item">
<a href="#">Content Policy</a>
</li>
<li class="help-list-item">
<a href="#">Privacy Policy</a>
</li>
<li class="help-list-item">
<a href="#">Mod Policy</a>
</li>
</ul>
</div>
</div>
<div class="help-footer">
<p>
Reddit Inc © 2020. All rights reserved
</p>
</div>
</div>
</div>
</div>
</section>
</body>
</html>