-
Notifications
You must be signed in to change notification settings - Fork 0
/
first.html
108 lines (94 loc) · 2.49 KB
/
first.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
display: flex;
background: url("s.jpg");
}
#forms{
margin-top: 10%;
text-align: center;
}
#infos{
display: flex;
flex-direction: column;
align-items: center;
border:5px solid yellowgreen;
border-radius: 50px;
background: radial-gradient(yellow,red);
width:100%;
height: 100%;
margin-top: 10%;
opacity:0.85;
/* transform: opacity 7s; */
box-shadow: 5px 10px #aa1818;
transition: opacity 5s;
/* background-image: url("s.jpg"); */
}
#infos:hover{
opacity: 0.5;
}
a{
text-decoration: none;
text-transform: capitalize;
font-weight: bolder;
}
#player{
font-size: x-large;
height: 50px;
border-radius: 30px;
color: #aa1818;
}
#fast{
border-radius: 30px;
margin-bottom:30%;
height: 50px;
color: #aa1818;
}
#play{
border-radius: 30px;
margin: 8px;
height: 70px;
width: 70px;
}
#nam{
font-weight: bolder;
text-transform: capitalize;
color: #0547e2;
font-size: x-large;
}
#cf{
font-weight: bolder;
text-transform: capitalize;
color: #0439e7;
font-size: x-large;
}
</style>
</head>
<body>
<div id="infos">
<form id="forms">
<label id ="nam" for="plname">enter name</label><br>
<input type="text" id="player" name="plname"><br>
<label for="cf" id="cf">enter speed</label><br>
<input type="number" id="fast" name="speed" placeholder="1 or 2"><br>
</form>
<button id="play" onclick="f()" >
<a href="t1.html">play</a> </button>
</div>
<script>
function f(){
// localStorage.clear();
var x=document.getElementById("fast").value;
var x1=document.getElementById("player").value;
console.log(x,x1)
localStorage.setItem("speed",x);
localStorage.setItem("plname",x1);}
</script>
</body>
</html>