forked from markrivasrobertson/practice-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 912 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
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>
Practice Page
</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Mark's sample page</h1>
<p>Another paragraph</p>
<p>Here's a paragraph</p>
<ul>
<li>
<a href="http://www.github.com">
Github
</a>
</li>
<li>
<a href="https://www.facebook.com/">
Facebook
</a>
</li>
<li>
<a href="https://en.wikipedia.org/wiki/Printing_press">Wikipedia</a>
</li>
<a href="">New Link</a>
<li>
Mark's new list item
</li>
</ul>
<script type="text/javascript" src="index.js"></script>
<button type="button" onclick="greeting();">Click for greeting</button>
<div id="root"></div>
<!-- <script type="text/javascript" src="index.js"></script> -->
</body>
</html>