-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (63 loc) · 1.86 KB
/
index.html
File metadata and controls
78 lines (63 loc) · 1.86 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JS LEARNING</title>
<!-- <style>
body{
background-color: #0a0a23;
}
#text{
background-color: #0a0a23;
color: #ffffff;
padding: 10px;
}
#game{
max-width: 500px;
max-height: 400px;
background-color: #0a0a23;
color: #ffffff;
margin: 10px auto 0px;
padding: 10px;
}
#controls, #stats{
border: 1px solid #0a0a23;
color: #0a0a23;
padding: 5px;
}
#monsterstats{
display: none;
border: 1px solid #0a0a23;
color: #0a0a23;
padding: 5px;
background-color: #c70d0d;
}
.stat{
padding-right: 10px;
}
button{
cursor: pointer;
color: #0a0a23;
background-color: #feac32;
background-image: linear-gradient(#fecc4c, #ffac33);
border: 3px solid #feac32;
}
</style> -->
</head>
<body>
<!-- <span class="stat">Monster Name: <strong><span id="monstername"></span></strong></span>
<span class="stat">Health: <strong><span id="monsterhealth"></span></strong></span>
-->
<!-- <input id="myInput" type="number" placeholder="weather temperature" />
<button id="myButton">Check</button>
<p id="myPara">Today weather is <span id="cold">cold</span></p> -->
<!-- <h1>test 2</h1>
<form id="tableForm">
<input type="number" value="34" id="inputID" />
<button type="submit">chandio</button>
</form> -->
<script src="https://cdn.jsdelivr.net/npm/date-fns@3.6.0/cdn.min.js"></script>
<script src="script.js"></script>
</body>
</html>