-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstruction.html
More file actions
67 lines (66 loc) · 1.26 KB
/
instruction.html
File metadata and controls
67 lines (66 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<title>Phytons Game</title>
</head>
<style type="text/css">
.screen{
width: 1024px;
height: 1024px;
background-image: linear-gradient(to bottom right, #002f3d, #414242, #002f3d) ;
margin : 0 auto;
box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.65);
border-radius: 20px;
}
.play{
padding-top: 20px;
width: 200px;
height: 200px;
}
.field{
background: none;
border: none;
outline: none;
width: 40%;
margin-left: 30%;
font-size: 50px;
color: white;
font-family: cursive;
}
.form-border {
background: -webkit-linear-gradient(right, #0069d9, #0a81ff);
height: 3px;
width: 40%;
margin-left: 30%;
}
.inst{
border:none;
margin-left: 30%;
width: 40%;
background-color: #0069d9;
font-size: 30px;
border-radius: 10px;
}
.inst:hover{
background-color: #5d96d4;
}
p{
text-align: center;
color: white;
font-size: 30px;
font-family: cursive;
}
.sub{
margin-left: 40%;
background : none;
border-style: none;
text-align: center;
}
</style>
<body>
<div class="screen">
<img src="design/Sumsel_logo.png" style=" padding-top: 20px; padding-left: 42%;"><br><br>
<a href="index.html"><button class="inst" type="submit">Back</button></a>
</div>
</body>
</html>