-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
81 lines (80 loc) · 4.37 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="The Bletchley Corporation, Jorge Gallego">
<meta name="title" content="The Bletchley Corporation - Contact">
<meta name="keywords" content="">
<meta name="description" content="">
<link rel="icon" href="favicon.ico">
<title>The Bletchley Corporation - Contact</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Arvo&family=Montserrat:wght@300;400;700;900&family=Quicksand&family=Poppins:wght@300&display=swap" rel="stylesheet">
<link href="css/contact.css" rel="stylesheet">
<link href="css/icons.css" rel="stylesheet">
<script src="https://unpkg.com/scrollreveal"></script>
<script src="https://kit.fontawesome.com/313f6b6c56.js" crossorigin="anonymous"></script>
</head>
<body>
<section class="container-fluid" id="title">
<nav class="navbar navbar-expand-lg navbar-dark sticky-top">
<a href="index.html" class="navbar-brand">The Bletchley Corporation</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarLinks" aria-controls="navbarLinks" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarLinks">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a href="#contact" class="nav-link">Contact</a>
</li>
</ul>
</div>
</nav>
<h1>Contact Us</h1>
</section>
<section class="container-fluid" id="contact">
<div class="row">
<div class="col-lg-12">
<h2>Email us</h2>
<form action="mailto: [email protected]">
<label for="email">Email</label>
<br>
<input type="email" name="e-mail" placeholder="[email protected]" id="email">
<br>
<label for="subject">Subject</label>
<br>
<input type="text" name="subject" placeholder="Subject" id="subject">
<br>
<label for="content">Your message</label>
<br>
<textarea name="message" id="message" placeholder="Your message" rows="5" cols="30"></textarea>
<br>
<input type="submit" value="Submit" name="submit" class="btn btn-success"></input>
</form>
</div>
</div>
</section>
<section class="container-fluid" id="links">
<a href="about.html"><h3>About Bletchley</h3></a>
<a href="services.html"><h3>Services at Bletchley</h3></a>
<a href="#"><h3>Contact Us</h3></a>
</section>
<footer class="container-fluid" id="footer">
<div class="row">
<div class="col">
<p>
<i class="fab fa-twitter fa-2x"></i>
<i class="fab fa-instagram fa-2x"></i>
<i class="fab fa-facebook fa-2x"></i>
<i class="fab fa-linkedin fa-2x"></i>
</p>
<p id="copyright">© Copyright <span id="year"></span> - The Bletchley Corporation</p>
</div>
</div>
</footer>
<script src="js/contact.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script>
</body>
</html>