-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (39 loc) · 1.5 KB
/
index.html
File metadata and controls
41 lines (39 loc) · 1.5 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles/index.css" />
<link href="https://fonts.googleapis.com/css?family=Raleway&display=swap" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/p5@1.0.0/lib/p5.js"></script>
</head>
<body>
<div class="first-page">
<div class="title-div">
<p class="title">
Why hello there
</p>
</div>
<div>
<p id="message">
Javascript is actually pretty cool! There's a bunch of neat stuff that you can do with it. This is a sample webpage
of me just experimenting around with what I can do in javascript using mainly native APIs and functionality. For
starters, you can click on the title of this document to change it. Try it!
</p>
</div>
<div class="next-button">
Next Page
</div>
</div>
<div>
<script src="scripts/circles.js"></script>
<div id='over'>
<p id="experiment-text">Simulations can be pretty cool.</p>
<div id="scn-move-on">→ Move On</div>
</div>
</div>
<div class='third-page'>
<script src="scripts/script.js"></script>
</div>
</body>
</html>