-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 956 Bytes
/
index.html
File metadata and controls
28 lines (27 loc) · 956 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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="utf-8">
<title>Styles Conference</title>
<link rel="sttylesheet" href="assests/stylesheets/main.css">
</head>
<body>
<h1>Styles Conference</h1>
<p>Hello how do you do</p>
<!--Division-->
<div class ="social">
<p>I may be found on....</p>
<p>Additionally i have a profile on....</p>
</div>
<!--Span-->
<p>Soon we'll be <span class="tooltip"></span>with the best of them.</p>
<!--Strong importance-->
<p><strong>Caution:</strong>Falling rocks.</p>
<!--Stylistically offset-->
<p>This recipe calls for <b>bacon</b> and <b>baconnaise.</b></p>
<!--Stressed emphasis-->
<p>I <em>love </em>Chicago!</p>
<!--Alternative voice or tone-->
<p>The name <i>Shay </i> means a gift.</p>
</body>
</html>