-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
41 lines (34 loc) · 1.69 KB
/
contact.html
File metadata and controls
41 lines (34 loc) · 1.69 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
<!doctype HTML>
<html>
<head>
<! Bootstrap CSS >
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<! JQuery for Bootstrap and Bootstrap JS script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<! MY STYLESHEET>
<link href="/css/styles.css" rel="stylesheet">
<! SPL FONTS FROM GOOGLE>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jacques+Francois+Shadow&display=swap" rel="stylesheet">
<title>Review My site</title>
</head>
<body>
<! Navigation Bar >
<div>
<header id="nav_bar">
<span id="nav_bar_logo" class="logo spl_font ">JS</span>
<span id="nav_bar_tagline" class="cursive">Qualtiy Redefined</span>
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="/contact.html">Contact Me</a></li>
<li><a href="/review.html">Review My Site</a></li>
</ul>
</header>
</div>
<! >
<div>
</div>
</body>
</html>