-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuttons.html
55 lines (49 loc) · 1.53 KB
/
buttons.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
<!DOCTYPE html>
<html>
<head>
<title>CHOOSE</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:200px;
left:280px;
}
div.core{
position: absolute;
top:200px;
left:700px;
}
</style>
</head>
<body>
<div class="center">
<h1><font class="sansserif" color="orange">CHOOSE YOUR CHOICE</font></h1>
</div>
<div class="bulk">
<form action="selectionBULK.html">
<input type="image" src="bulking.jpg" alt="Submit" width="300" height="200"><br>
<font class="sansserif" color="orange">BULKING</font>
</form>
</div>
<div class="core">
<form action="selectionCORE.html">
<input type="image" src="core.jpg" alt="Submit" width="300" height="200"><br>
<font class="sansserif" color="orange">CORE STRENGTH</font>
</form>
</div>
</body>
</html>