-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (25 loc) · 884 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>575 Lesson 1</title>
<!--put your external stylesheet links here-->
<link rel="stylesheet" href="css/style.css">
<!--[if IE<9]>
<link rel="stylesheet" href="css/style.ie.css">
<![endif]-->
<!--you can also place internal styles here
place these within <style> tags-->
</head>
<body>
<!--put your initial page content here-->
<div id="mydiv">
Hello World! My name is Hayley
</div>
<!--you can also use this space for internal scripts;
place these within <script> tags-->
<!--put your external script links here-->
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>