-
Notifications
You must be signed in to change notification settings - Fork 0
/
IW.html
75 lines (59 loc) · 1.74 KB
/
IW.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!--
HowToNavy.com
Last Updated: 2022-04-23
Author: Abigail Spencer
-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>HowToNavy.com</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="HTML, CSS">
<meta name="description" content="How to Navy">
<link rel="icon" type="image/png" href="LOGO-D.png">
</head>
<body>
<nav class="wrapper-total">
<div class="wrapper-home">
<ul>
<li><a href="index.html">HowToNavy.com</a></li>
<li><a href="index.html">Home</a></li>
<li><a href="links.html">Links</a></li>
<li><a href="forms.html">Forms</a></li>
<li><a href="tutorials.html">How-To Guides</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
<div class="menuIcon">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
</nav>
<div class="menu">
<a href="index.html">Home</a>
<a href="links.html">Links</a>
<a href="forms.html">Forms</a>
<a href="tutorials.html">How-To Guides</a>
<a href="about.html">About</a>
<a href="contact.html">Contact Us</a>
</div>
<div class="info">
<h1 class="info-title">Intelligence Warfare Community</h1>
</div>
<div class="QuickLinks">
<a href="https://www.mynrh.navy.mil/" target="_blank">Navy Reserve Homeport</a>
</div>
<!-- Container of Main Page Content -->
<div class="EducationContainer">
<h3 class="info-title">Coming soon!</h3>
<p>
</p>
</div>
<!-- JAVASCRIPT TAG -->
<script src="app.js"></script>
</body>
</html>