-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (53 loc) · 1.33 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Example Page</title>
</head>
<body>
<style>
.btn{
font-family: 'fira sans' , sans-serif;
font-size: 24px;
padding: 2 2;
}
#outputText {
font-size: 24px;
text-align: left;
color: #2788ea;
padding-top: 50px;
font-family: 'arial' , sans-serif;
animation-name: ayat;
animation-timing-function: ease-in-out;
animation-duration: 2sec;
}
@keyframes ayat {
0% {
width: 20px;
}
50% {
width: 30px;
}
100% {
width: 40px;
}
}
</style>
<div id="wrapper">
<div id="btn1" class="btn"> Click Me</div>
<div id="btn2" class="btn"> Click Me</div>
<div id="output">nothing</div>
<ul>
<li>One</li>
<li>Two</li>
</ul>
</div>
<div id="content">
<input type="text" name="numA" id="myVal" value="">
<button id="btn" class="btn">Update</button>
<div id="outputText"></div>
</div>
<div id="example"></div>
<script type="text/javascript" src="index.js"></script>
</body>
</html>