-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (42 loc) · 1.44 KB
/
index.html
File metadata and controls
43 lines (42 loc) · 1.44 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
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JS201: Project</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="./templates/favicon.png" type="image/png">
</head>
<body>
<div id="container1">
<div id="content1">
<div class="header">
<button class="button1">
<img src="templates/buttonlogo.png" alt="button1 logo" id="button1">
</button>
</div>
<div class="contentbody">
<div class="contentbodybox1">
<div class="contentbodybox1name">
Name:
</div>
<div class="contentbodybox1disc" id="name"></div>
</div>
<div class="contentbodybox2">
<div class="contentbodybox2name">
Planet:
</div>
<div class="contentbodybox2disc" id="planet"></div>
</div>
<div class="contentbodybox3">
<div class="contentbodybox3name">
Movies:
</div>
<div class="contentbodybox3disc" id="movies"></div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>