forked from WBWeb/FullStackWebDevelopment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 844 Bytes
/
index.html
File metadata and controls
37 lines (34 loc) · 844 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div>
<h1>Me: You should join my group</h1>
<h3>You: Only if you can show me a Kickflip frontside boardslide.</h3>
<h4>Me: Sounds good.</h4>
<p class="holla">I love listening to "The Sounds" when I code. What do you listen too?</p>
<ul>
<li>Hey</li>
<li>Your</li>
<li>Awesome</li>
<ol>
<li>Build a</li>
<li>Bird</li>
<li>Nest</li>
</ol>
<li>Hey</li>
<li>Your</li>
<li>Awesome</li>
</ul>
</div>
<div class="parent">
<h2>What kind of CSS combinator you gonna use?</h2>
<div>
<h2>The right one becuase I know my stuff.</h2>
</div>
</div>
</body>
</html>