-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (77 loc) · 2.66 KB
/
index.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
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Network Solutions</title>
<link rel="stylesheet" href="./css/main.css">
<script src="jquery-3.2.1.min.js"></script>
<script>
$(document).ready(function() {
$('#branding').fadeOut(1);
$('#branding').removeClass('hidden');
$('#branding').fadeIn(1000);
});
</script>
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1><span class="highlight">Network</span> Solutions</h1>
</div>
<nav>
<ul>
<li class="current"><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="software.html">Software</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section id="showcase">
<div class="container">
<h1>Stay Connected</h1>
<p>We offer various networking services for your business at affordable prices.</p>
</div>
</section>
<section id="boxes">
<div class="container">
<div class="box">
<img src="./img/pentest.jpg" alt="Pentesting logo">
<h3>Penetration Testing</h3>
<p>Comprehensive risk, vulnerability, and penetration testing.</p>
</div>
<div class="box">
<img src="./img/disasterrecovery.jpg" alt="Disaster recovery">
<h3>Disaster Recovery Planning</h3>
<p>Ensure continued access to your network in the event of natural or man-made disasters.</p>
</div>
<div class="box">
<img src="./img/consulting.jpg" alt="Placeholder">
<h3>IT Consulting</h3>
<p>Find what's best for your business.</p>
</div>
</div>
</section>
<section>
<div class="sbutton">
<form action="services.html">
<input type="submit" class="servicesbutton" value="View Pricing">
</form>
</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>