-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (38 loc) · 1.02 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
<html>
<head>
<link rel="stylesheet" href="./styles.css">
<style>
.square {
width: 300px;
height:300px;
float:left;
}
.container {
width:600px;
height:600px;
margin:auto;
}
.hidden {
display:none;
}
</style>
</head>
<body>
<!-- <h1>if the munber is over 79 then you win!</h1>
<div id="root">placeholder</div>
<button>Click</button>
<h2>Results</h2>
<ul id="myList">
<li>result...</li>
</ul> -->
<div class="container">
<img src="OofForJustin.png" id="justin" class="hidden">
<div id="random" style="background-color: aqua">
<button>
random
</button>
</div>
</div>
<script src="./test.js"></script>
</body>
</html>