-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathonboarding5.html
49 lines (41 loc) · 1.41 KB
/
onboarding5.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
<!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 {
display: block;
height:95%;
position: absolute;
top: 2.5%;
left: 2.5%;
}
.button2 {
display: block;
height:95%;
position: absolute;
top: 2.5%;
right: 2.5%;
}
</style>
</head>
<body>
<div class="container">
<h1 id="slogan1" class="display-4">Two Guests</h1>
<br>
<p id="slogan2">We're almost done!</p>
<p id="slogan2">This page has <i>two</i> objects, each one with its own sound.</p>
<p id="slogan2">To finish this tutorial, click on the object with the new sound (to the right).</p>
<p id="slogan2">To try this tutorial again from the top, click on the old sound (to the left).</p>
<p id="slogan2">Thanks, and welcome to the <b>sonic cocktail party</b> of the web!</p>
</div>
<a id="button-tut" class="button1" style="width: 15%;" href="onboarding1.html" role="button"></a><br>
<a id="button-tut" class="button2" style="width: 15%;" href="first.html" role="button"></a><br>
</body>
</html>