-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistoryBack.html
37 lines (37 loc) · 1.09 KB
/
historyBack.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
<!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>historyBack</title>
<style>
.demo, .demo1{
width : 20vw;
height: 10vw;
border: 2px solid black;
border-radius: 5px;
}
</style>
</head>
<body>
<button onclick="goBack()">Go Back</button>
<a href="i.html">return</a>
<h1 id="heading">Color going to change after click</h1>
<label for="colorModify">color: </label>
<input type="text" name="colorModify" id="colorModify" placeholder="red">
<button onclick="changeColor()">click to change color</button>
<br>
<br>
<label for="Para">enter data to put in para box: </label>
<input type="text" name="Para" id="Para">
<button onclick="submit()">submit</button>
<br>
<p class="demo" ></p>
<br>
<p class="demo1" ></p>
<br>
<p class="demo1" ></p>
</body>
<script src="s.js"></script>
</html>