-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (29 loc) · 707 Bytes
/
index.html
File metadata and controls
37 lines (29 loc) · 707 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 lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Class 1 Lab</title>
<style>
h1 {
color: rebeccapurple;
background-color: #eee;
font-weight: bold;
text-shadow: 10px 5px 5px goldenrod;
}
</style>
</head>
<body>
<header>
<h1>Class 1 Lab</h1>
</header>
<main>
<script src="js/script.js"></script>
</main>
<footer>
<p> copyright reserved 2021</p>
</footer>
</body>
</html>