-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (52 loc) · 1.28 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./main.css">
</head>
<body>
<div class="hello-world-block">
Hello World 1! <br/>
<ul class="new-menu">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<button class="new-button">
New Button Text
</button>
<input type="test" placeholder="Enter text"/>
<button onclick="alertMe()"; class="run-js-button">
RUN JAVASCRIPT
</button>
New Text 2
<table class="my-data-table">
<thead>
<th>Name</th>
<th>Age</th>
<th>Location</th>
</thead>
<tbody>
<td>Rody</td>
<td>36</td>
<td>Ireland</td>
</tbody>
<tbody>
<td>Sarah</td>
<td>32</td>
<td>Brighton</td>
</tbody>
<tbody>
<td>Tom</td>
<td>30</td>
<td>Birmingham</td>
</tbody>
</table>
</div>
<script src="./main.js" async defer></script>
</body>
</html>