-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
127 lines (112 loc) · 5.82 KB
/
404.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="We are medikom. Please visit our page to learn more about our mission and our products.">
<title>404 | medikom</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Alata&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="shortcut icon" type="image/jpg" href="favicon.png"/>
<script type="text/javascript" src="js/scripts.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
</head>
<body>
<!-- navbar -->
<header class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container">
<a class="navbar-brand" href="/"><img src="images/logo.png" alt=""></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="history.html">Our History</a>
</li>
<li class="nav-item">
<a class="nav-link" href="products.html">Products</a>
</li>
<li class="nav-item">
<a class="nav-link" href="news.html">News</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</header>
<!-- 404 -->
<section class="fourZeroFourSection">
<div class="container fourZeroFour">
<div class="row fourZeroFour">
<div class="align-self-center">
<div class="row align-items-center">
<div class="col-lg-6 col-md-12">
<h2 class="col-12" id="fourZeroFourHeader">Oops.</h2>
<p class="col-lg-10 col-md-12">We're sorry, but that page you are looking for is not available or does not exist. Please try going back to the home page, or contact us if your problem still persists.</p>
<div class="col-12">
<a href="/" class="callToActionLeftButton">
<button class="btn btn-light col-xl-3 col-lg-4 col-5 ">Home</button>
</a>
<a href="contact.html" class="margin-left-0-5">
<button class="btn btn-secondary col-xl-3 col-lg-4 col-5 ">Contact Us</button>
</a>
</div>
</div>
<div class="col-6">
<img class="callToActionImg col-12 d-none d-lg-block " src="images/server.png" alt="">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- footer -->
<footer class="container-fluid">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6">
00000, 123 Example Rd<br>
New York<br>
New York<br>
(415) 555-0132<br>
medikom@example.com
</div>
<section class="divider d-sm-none"></section>
<div class="col-md-3 col-sm-6">
<a class="footerNav" href="/">Home</a><br>
<a class="footerNav" href="history.html">Our History</a><br>
<a class="footerNav" href="products.html">Products</a><br>
<a class="footerNav" href="news.html">News</a><br>
<a class="footerNav" href="contact.html">Contact</a>
</div>
<section class="divider d-md-none"></section>
<div class="col-md-6 col-sm-12">
<p class="newsletterHeader">Newsletter</p>
<p>Sign up for our newsletter for the latest updates on our products!</p>
<form onsubmit="return false" id="footer-form">
<input type="text" class="form-control" placeholder="Email" id="footer-email">
<button class="btn btn-primary margin-top-1" onclick="showConfirmationEmail()">Submit</button>
</form>
<p id="footerEmailSuccess" class="margin-top-1">You have been successfully registered!</p>
<p id="footerEmailFailure" class="margin-top-1">Please enter a valid email address.</p>
</div>
</div>
<section class="divider"></section>
<div class="row">
<div>
© 2021 | TSA Team #### | <a class="footerNav" href="works.html"><u>Works Cited</u></a>
<br class="d-md-none">
</div>
</div>
</div>
</footer>
</body>
</html>