-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddressMap.html
More file actions
84 lines (61 loc) · 2.86 KB
/
AddressMap.html
File metadata and controls
84 lines (61 loc) · 2.86 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
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"> <!--Same as Portfolio-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="ContactForm.css"> <!--CONTACT CSS STYLE SHEET-->
<script src="script.js" defer></script> <!--JS FOR NAV BAR and POP UP-->
<title>Thank you</title> <!--23 June Added Title to Head-->
</head>
<body>
<header class="header"> <!--Amended, added header as there were 2 x head -->
<!--NEW NAV TEST 22/6-->
<nav class="navbar">
<div class="the-title title-push">SPS
</div>
<a href="#" class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<div class="navbar-links">
<ul>
<li> <a href="index.html">Portfolio</a> </li>
<li> <a href="Contact Form.html">Contact</a> </li>
<li> <a href="https://www.instagram.com/">Instagram</a> </li>
</ul>
</div>
</nav>
</header>
<!--NEW NAV TEST 22/6 ENDDDDDDDDDDDDD-->
<!--EDIT 23 JUNE REMOVED SECOND BODY TAG AS THERE SHOULD ONLY BE ONE-->
<h1 class = "contact-title">Find me here</h1>
<div class = "map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2483.2779924102897!2d-0.07813798434348941!3d51.50811571847204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x48760349331f38dd%3A0xa8bf49dde1d56467!2sTower%20of%20London!5e0!3m2!1sen!2suk!4v1656427634834!5m2!1sen!2suk" width="800" height="600" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<!--FOOTER STARTS HERE
-->
<form id="emailform">
<footer id="the-footer">
<!-- Form -->
<p id="footer-title"><strong>Subscribe to my newsletter</strong></p>
<p id="footer-subtitle"> Monthly photography tips and offers</p>
<!-- <form id="emailform"> -->
<label>Email address:</label>
<input type="email" name="email" id="emailBox" placeholder="email@address.com"/>
<button id="submitFooter" onclick="myFunction()"><strong>Submit</strong></button>
<p id="copyright"> Copyright SPS © 2022<p>
<!-- </form> -->
<!-- Social links-->
<p><a href="https://www.twitter.com/" target="_blank">
<img id="Twitter" height="35" alt="Twitter icon" src="https://cdn1.iconfinder.com/data/icons/social-media-circle-7/512/Circled_Twitter_svg-1024.png">
</a> </p>
<p><a href="https://www.facebook.com/" target="_blank">
<img id="Facebook" height="35" alt="Facebook icon" src="https://cdn3.iconfinder.com/data/icons/social-media-black-white-2/512/BW_Facebook_glyph_svg-1024.png">
</a></p>
<!-- Copyright -->
</footer>
</form>
</body>
</html>