-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
32 lines (28 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Computer Build</title> <!-- You may change this -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script language="javascript" type="text/javascript" src="libraries/p5.js"></script>
<script language="javascript" src="libraries/p5.dom.js"></script>
<script language="javascript" type="text/javascript" src="sketch.js"></script>
</head>
<body>
<div class="jumbotron">
<div class="container text-center">
<h1>My Computer Build</h1> <!-- You may change this -->
<p>by Student</p> <!-- You should change this -->
</div>
</div>
<div class="container-fluid bg-3 text-center" id="components">
<!-- Components will be loaded into here automatically by p5.js through our sketch.js -->
</div><br>
<footer class="container-fluid text-center">
<p>Footer Text</p>
</footer>
</body>
</html>