-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·165 lines (144 loc) · 5.4 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
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tweeter</title>
<!-- This is a 3rd-party stylesheet to make available the font family to be used for this page ("Roboto"). -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap" rel="stylesheet">
<!-- This 3rd-party stylesheet incorporates SVG icons from Font Awesome: http://fontawesome.com/ -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css" crossorigin="anonymous">
<link rel="stylesheet" href="style.css" media="screen">
</head>
<body>
<header>
<!-- The <i> tag below includes the lizard hand icon from Font Awesome. Do not directly style this element. -->
<a href="#"><h1 class="site-title"><i class="far fa-hand-lizard"></i> tweeter</h1></a>
<nav class="navbar">
<ul class="navlist">
<li class="navitem navlink active"><a href="#">Home</a></li>
<li class="navitem navlink"><a href="#">Trending</a></li>
<li class="navitem navlink"><a href="#">People</a></li>
<li class="navitem navbar-search">
<input type="text" id="navbar-search-input" placeholder="Search...">
<button type="button" id="navbar-search-button"><i class="fas fa-search"></i></button>
</li>
</ul>
</nav>
</header>
<main class="twit-container">
<article class="twit">
<div class="twit-icon">
<!-- The <i> tag below includes the bullhorn icon from Font Awesome. Do not directly style this element. -->
<i class="fas fa-bullhorn"></i>
</div>
<div class="twit-content">
<p class="twit-text">
Watching my web dev lecture... This class is so awesome! Pass the popcorn.
</p>
<p class="twit-author">
<a href="#">CSMajor2021</a>
</p>
</div>
</article>
<article class="twit">
<div class="twit-icon">
<!-- The <i> tag below includes the bullhorn icon from Font Awesome. Do not directly style this element. -->
<i class="fas fa-bullhorn"></i>
</div>
<div class="twit-content">
<p class="twit-text">
Isn't it great to have baseball back? Go Beavs!
</p>
<p class="twit-author">
<a href="#">BeaverBeliever</a>
</p>
</div>
</article>
<article class="twit">
<div class="twit-icon">
<!-- The <i> tag below includes the bullhorn icon from Font Awesome. Do not directly style this element. -->
<i class="fas fa-bullhorn"></i>
</div>
<div class="twit-content">
<p class="twit-text">
A body in motion must remain in motion unless acted upon by an outside force.
</p>
<p class="twit-author">
<a href="#">NewtonRulez</a>
</p>
</div>
</article>
<article class="twit">
<div class="twit-icon">
<!-- The <i> tag below includes the bullhorn icon from Font Awesome. Do not directly style this element. -->
<i class="fas fa-bullhorn"></i>
</div>
<div class="twit-content">
<p class="twit-text">
Huh?
</p>
<p class="twit-author">
<a href="#">ConfusedTweeterer</a>
</p>
</div>
</article>
<article class="twit">
<div class="twit-icon">
<!-- The <i> tag below includes the bullhorn icon from Font Awesome. Do not directly style this element. -->
<i class="fas fa-bullhorn"></i>
</div>
<div class="twit-content">
<p class="twit-text">
Why did the calf cross the road?
</p>
<p class="twit-author">
<a href="#">Setup</a>
</p>
</div>
</article>
<article class="twit">
<div class="twit-icon">
<!-- The <i> tag below includes the bullhorn icon from Font Awesome. Do not directly style this element. -->
<i class="fas fa-bullhorn"></i>
</div>
<div class="twit-content">
<p class="twit-text">
To get to the udder side!
</p>
<p class="twit-author">
<a href="#">Punchline</a>
</p>
</div>
</article>
<article class="twit">
<div class="twit-icon">
<!-- The <i> tag below includes the bullhorn icon from Font Awesome. Do not directly style this element. -->
<i class="fas fa-bullhorn"></i>
</div>
<div class="twit-content">
<p class="twit-text">
Any questions about flexboxes?
</p>
<p class="twit-author">
<a href="#">Hess</a>
</p>
</div>
</article>
<article class="twit">
<div class="twit-icon">
<!-- The <i> tag below includes the bullhorn icon from Font Awesome. Do not directly style this element. -->
<i class="fas fa-bullhorn"></i>
</div>
<div class="twit-content">
<p class="twit-text">
Friendly reminder: the tax deadline was extended. You're welcome.
</p>
<p class="twit-author">
<a href="#">TheIRS</a>
</p>
</div>
</article>
</main>
<button type="button" id="create-twit-button"><i class="fas fa-bullhorn"></i></button>
</body>
</html>