-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselectionCORE.html
60 lines (53 loc) · 1.54 KB
/
selectionCORE.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
<!DOCTYPE html>
<html>
<head>
<title>selectCORE</title>
<style>
body {
background-color: #1c1c1c;
}
.center {
position: absolute;
left: 0;
top: 0px;
width: 100%;
text-align: center;
font-size: 18px;
}
font.sansserif {
font-family: Arial, Helvetica, sans-serif;
}
div.bulk{
position: absolute;
top:400px;
left:300px;
}
div.cut{
position: absolute;
top:400px;
left:900px;
}
</style>
</head>
<body>
<div class="center">
<h1><font class="sansserif" color="orange">CHOOSE YOUR CHOICE</font></h1>
</div>
<div class="bulk">
<button onclick="beginer()">BEGINNER</button><br>
<font class="sansserif" color="orange">(0-18 months)</font>
</div>
<div class="cut">
<button onclick="expert()">EXPERIENCED</button> <br>
<font class="sansserif" color="orange">(18 months & above)</font>
</div>
</body>
<script>
function beginer() {
location.replace("corebeg.html")
}
function expert() {
location.replace("coreexp.html")
}
</script>
</html>