-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcss.html
More file actions
32 lines (29 loc) · 710 Bytes
/
css.html
File metadata and controls
32 lines (29 loc) · 710 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
<html>
<head>
<link rel= "stylesheet" href="style.css">
<
</head>
<body>
<div class="wrap">
<h1>My Second Website</h1>
<div class="content" >
<h2> Main point</h2>
<p>Main Heading</p>
</div>
<aside>
<h2> Sidebar</h2>
<ul>
<li>
Home
</li>
<li>
About Me
</li>
<li>
FAQ
</li>
</ul>
</aside>
</div>
</body>
</html>