-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (29 loc) · 1.03 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<!-- Author: Nathan Fiscus -->
<!-- Date: 3/14/2019 -->
<html lang="en-US">
<head>
<title>Nathan Fiscus' JavaScript Test Page</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="./css/index_styles.css" type="text/css" />
</head>
<body>
<div id="header">
<div id="header_text">
<p>Nathan Fiscus' JavaScript Test Page</p>
</div>
</div>
<div id="content">
<div class="rows">
<div class="row_01" id="alternate1">
<p id="desc">This page will demonstrate JavaScript's window.prompt()
<br /> and window.alert().</p>
</div>
</div>
</div>
<div id="footer">
<p>Developed by Nathan Fiscus - 3/14/2019</p>
</div>
<script src="./scripts/myScript.js"></script>
</body>
</html>