-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.html
More file actions
53 lines (44 loc) · 1.95 KB
/
code.html
File metadata and controls
53 lines (44 loc) · 1.95 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
48
49
50
51
52
53
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CodeAcademy</title>
<link rel="stylesheet" href="stylesheet">
<link rel="icon" type="image/png" href="freshcon.png">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="w3.css">
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<!-- Navigation-->
<nav id="nav" class="w3-sidenav w3-white w3-card-2">
<header class ="w3-container center">
<img id= "logo" src="img/nasa.png" alt="nasa logo">
</header>
<div class="links">
<a href="index.html"> Home</a>
<a href="other.html"> My Other Cool Page</a>
<a href="code.html"> CodeAcademy</a>
<a href="git.html"> GitHub</a>
</div>
</nav>
<div id="main">
<!--Header of the Website-->
<header class="w3-container w3-red">
<h3>You Can Learn More On CodeAcademy</h3>
</header>
<iframe width="100%" height="846px" src="https://www.codecademy.com/learn" frameborder="0" allowfullscreen></iframe>
<!--Body of Website -->
<!--Footer-->
<footer class="w3-container w3-red">
Made with <i class="fa fa-money w3-xlarge"></i> by KHE <br/>
<div class="left">
<a href="https://www.facebook.com/" title="facebook" target="_blank"><i class="fa fa-facebook-square w3-xxlarge"></i></a>
<a href="www.twitter.com/" title="twitter" target="_blank"><i class="fa fa-twitter-square w3-xxlarge"></i></a>
<a href="https://instagram.com/" title="Instagram" target="_blank"><i class ="fa fa-instagram w3-xxlarge"></i></a>
</div>
</footer>
</div>
</body>
</html>