-
Notifications
You must be signed in to change notification settings - Fork 0
/
third.html
executable file
·38 lines (31 loc) · 1002 Bytes
/
third.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
<!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">
<title>Computer Prototype</title>
<script src="engine.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link href="style.css" rel="stylesheet">
<style>
.button1 {
position: absolute;
top: 70px;
left: 70px;
}
.button2 {
position: absolute;
bottom: 70px;
right: 70px;
}
</style>
</head>
<body>
<p id="demo1" class="content1"></p>
<p id="demo2" class="content2"></p>
<p id="demo3" class="content3"></p>
<a id="button" class="button1" href="second.html" role="button">Previous Page</a><br>
<a id="button" class="button2" href="fourth.html" role="button">Next Page</a><br>
</body>
</html>