-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (101 loc) · 5.1 KB
/
index.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!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">
<meta name="keywords" content="">
<meta name="description" content="">
<link rel="icon" href="favicon.ico">
<title>The Bletchley Corporation</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/index.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="#" 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">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a href="#about" class="nav-link">About</a>
</li>
<li class="nav-item">
<a href="#services" class="nav-link">Services</a>
</li>
<li class="nav-item">
<a href="#contact" class="nav-link">Contact</a>
</li>
</ul>
</div>
</nav>
<h1>The Bletchley Corporation</h1>
</section>
<section class="container-fluid" id="about">
<div class="row">
<div class="col-lg-7">
<h2>About Bletchley</h2>
<h3>Know the history behind the brand</h3>
<br>
<a href="about.html"><button class="btn btn-lg btn-light">Learn More</button></a>
</div>
<div class="col-lg-5">
<img src="images/logo.png" alt="The Bletchley Corporation" title="The Bletchley Corporation Logo" style="max-width: 100%;">
</div>
</div>
</section>
<section class="container-fluid" id="services">
<div class="row">
<div class="col-lg-4">
<p class="icons">
<i class="fab fa-html5 fa-4x"></i>
<br>
<i class="fab fa-java fa-4x"></i>
</p>
</div>
<div class="col-lg-8">
<h2>Services at Bletchley</h2>
<h3>Quality Software. Made Affordable.</h3>
<br>
<a href="services.html"><button class="btn btn-lg btn-success">Go</button></a>
</div>
</div>
</section>
<section class="container-fluid" id="contact">
<div class="row">
<div class="col-lg-12">
<div id="contact-vertical-center">
<h2>Contact Us</h2>
<h3>Let's get in touch.</h3>
<br>
<a href="contact.html#contact"><button class="btn btn-lg btn-dark">Contact</button></a>
</div>
</div>
</div>
</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/index.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>