-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsoftware.html
More file actions
49 lines (44 loc) · 1.3 KB
/
software.html
File metadata and controls
49 lines (44 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Network Solutions | Software</title>
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1><span class="highlight">Network</span> Solutions</h1>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li class="current"><a href="software.html">Software</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section id="showcase2">
<div class="container">
<h1>Open Source</h1>
<p>Check out our software on our <a href="https://github.com/hillt03">GitHub!</a>
</p>
</div>
</section>
</main>
<footer>
<p>Network Solutions, Copyright ©
<script>
var date = new Date();
var year = date.getFullYear();
document.write(year);
</script>
</p>
</footer>
</body>
</html>