-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<title>Toy's Test GitHub Pages Site</title>
</head>
<body>
<style>
html {
font-family: cursive;
background-color: mediumspringgreen;
font-size: 28px;
}
</style>
<h1>Test Pages for the Interwebs</h1>
<br>
<li>
<div style="display: inline;">
<button type="button" onclick="helloWorld();">Hello world alert</button>
<script>
function helloWorld() {
alert("Hello, world!");
}
</script>
</div>
<br>
<a href="passwordTest/passwordTest1.html">Password Test</a>
<br>
<a href="passwordTest/passwordTest2.html">Password Test 2</a>
<br>
<a href="https://toydotgame.github.io/redo122-test-website/" title="I made it because why not?">Redo122's Site</a>
<br>
<a title="Hello, world!">This text should display a message when you hover over it.</a>
</li>
</body>
</html>