-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreview.html
More file actions
50 lines (42 loc) · 2.27 KB
/
review.html
File metadata and controls
50 lines (42 loc) · 2.27 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
50
<!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>
<! Review Form >
<div id="review_form">
<h3>For any comments on my site fill the following form:</h3>
<form>
<input id="name" class="txt" autocomplete="off" type="text" placeholder="Enter your name">
<input id="email" class="txt" autocomplete="off" type="email" placeholder="Enter your email">
<textarea id="comments" class="txt" autocomplete="off" type="text" placeholder="Anything you would like to say to me."></textarea>
<input class="submit" type="submit">
</form>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>