generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvalidation.html
74 lines (64 loc) · 2.72 KB
/
validation.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Love 2 Cook - Cooking Recipes that won't break the bank">
<meta name="keywords" content="cooking, beginner, recipes, budget">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="icon" href="assets/img/frying-pan-icon.png">
<title>Love 2 Cook</title>
</head>
<body>
<header>
<a href="index.html">
<h1 id="logo" >
<img id="icon" src="assets/img/frying-pan-icon.png" alt="Frying Pan Icon">Love 2 Cook
</h1>
</a>
<nav>
<div id="header-menu">
<ul id="menu">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="recipes-main.html" >Recipes</a>
</li>
<li>
<a href="contact.html" class="active">Contact</a>
</li>
</ul>
</div>
</nav>
</header>
<section id="validation">
<h1 class="validation-response">Thank you very much for your message. We will get back to you as soon as possible.<br>Don't forget to visit our <a href="recipes-main.html" id="validation-recipe">Recipes</a> page regularly to check for new additions.</h1>
</section>
<footer>
<h2 class="socials-note">Find us on our Social Accounts</h2>
<hr class="hr-thick">
<ul class="socials">
<li>
<a href="https://facebook.com" target="_blank" rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)"><i class="fab fa-facebook-f"></i></a>
</li>
<li>
<a href="https://twitter.com" target="_blank" rel="noopener"
aria-label="Visit our Twitter page (opens in a new tab)"><i class="fab fa-twitter"></i></a>
</li>
<li>
<a href="https://youtube.com" target="_blank" rel="noopener"
aria-label="Visit our Youtube page (opens in a new tab)"><i class="fab fa-youtube"></i></a>
</li>
<li>
<a href="https://instagram.com" target="_blank" rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)"><i class="fab fa-instagram"></i></a>
</li>
</ul>
</footer>
<!-- font awesome script -->
<script src="https://kit.fontawesome.com/0dd576827f.js" crossorigin="anonymous"></script>
</body>
</html>