-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcascadingss.html
37 lines (37 loc) · 946 Bytes
/
cascadingss.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>template</title>
<script src="src/js/init.js"></script>
<link href="favicon.ico" rel="shortcut icon" type="image/x-icon">
<link href="styles.css" rel="stylesheet" type="text/css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
</style>
</head>
<body>
<header>
<h1>Heading in a header</h1>
</header>
<main>
<div>
<ul>
<li>a</li>
<li>b</li>
</ul>
</div>
<div>
<ul>
<li>a</li>
<li>b</li>
</ul>
</div>
<p>Paragraph</p>
</main>
<footer>
<hr>
<p>Footer</p>
</footer>
</body>
</html>