-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (45 loc) · 1.49 KB
/
index.html
File metadata and controls
47 lines (45 loc) · 1.49 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
44
45
46
47
<!DOCTYPE html>
<!--
author William Orgertrice, Ayanna Shaheed and Julian Sosa
-->
<html>
<head>
<title>Web Programming Project 3</title>
<meta charset="UTF-8">
<!-- Responsive Layout -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="Project3.css">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<!-- Fonts -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
</head>
<!-- Beginning of body -->
<body>
<!--Beginning of Header -->
<div class="Header">
<header>
<section class="Top">
<h1>
Hello World!
</h1>
</section>
</header>
</div>
<!--End of Header -->
<!--Beginning of Main Content-->
<div class="MainContent">
<div class="Middle">
<p></p>
</div>
</div>
<!--End of Main Content-->
<!-- Beginning of footer -->
<div class="Footer">
<div class="Bottom">
</div>
</div>
<!-- End of footer -->
</body>
</html>