generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy paththankyou.html
99 lines (95 loc) · 4.78 KB
/
thankyou.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
<!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="keywords" content="Virtual Reality, Augmented Reality, VR training, immersive learning">
<meta name="description" content="Immersive learning advisory firm help companies develop VR and AR">
<title>Train in XR - Experts in VR and AR Learning Innovation</title>
<link rel="icon" type="image/x-icon" href="assets/favicon/favicon.ico">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous"/>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- header and navigation section -->
<header>
<nav class="navbar">
<a href="index.html">
<img src="./assets/images/txr_logo.svg" alt="Train in XR main logo" class="logo" aria-label="Train in XR logo">
</a>
<button class="hamburger-icon" id="hamburger" aria-label="menu">
<i class="fas fa-bars"></i>
</button>
<ul class="navbar-ul" id="navbar-ul">
<li><a href="services.html">Our Services</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="contact.html" class="link-demo">Book a demo</a></li>
</ul>
<a href="login.html" class="link-login">Client Login</a>
</nav>
</header>
<!-- thank you page hero section -->
<section>
<div class="contact-bg">
<div class="page-container">
<h1 class="page-intro">Thank you!</h1>
</div>
</div>
</section>
<!-- thank you section -->
<section>
<div class="solutions-intro">
<h2>We are looking forward to our continuing engagement and are happy to help you and your teams get closer to your business goals. Have a great day!</h2>
</div>
</section>
<!-- footer section -->
<footer class="footer">
<div class="footer-container">
<div class="footer-about">
<a href="#">
<img src="./assets/images/txr_logo_footer.svg" class="footer-logo" alt="Train in XR logo">
</a>
<div>
<p>
We are a team of software developers, 3D modellers and learning professionals.
We're here to help solve your workforce training challenges through learning innovation.
</p>
</div>
<div class="social-networks">
<a href="https://uk.linkedin.com/" target="_blank" rel="noopener" aria-label="link to LinkedIn"><i class="fab fa-linkedin-in"></i></a>
<a href="https://twitter.com/" target="_blank" rel="noopener" aria-label="link to Twitter"><i class="fab fa-twitter"></i></a>
<a href="https://en-gb.facebook.com/" target="_blank" rel="noopener" aria-label="link to Facebook"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.instagram.com/?hl=en" target="_blank" rel="noopener" aria-label="link to Instagram"><i class="fab fa-instagram"></i></a>
<a href="https://www.youtube.com/" target="_blank" rel="noopener" aria-label="link to YouTube"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="footer-services">
<h3>Services</h3>
<div>
<ul>
<li><a href="services.html">Advisory Consulting</a></li>
<li><a href="services.html">Learning & Development Transformation</a></li>
<li><a href="services.html">Virtual Reality</a></li>
<li><a href="services.html">Augmented Reality</a></li>
</ul>
</div>
</div>
<div class="footer-contact">
<h3>Address</h3>
<div>
<ul>
<li><i class="fas fa-map-marker-alt"></i> 123 Excel Street, London, EC2A 1BN, UK</li>
<li><i class="fas fa-phone"></i> +44 020 1234 5678</li>
<li><a href="mailto:info@txr.com" target="_blank"><i class="fas fa-at"></i> info@txr.com</a></li>
</ul>
<p class="copyright"><i>Copyright © Joy Zadan (2021)</i></p>
</div>
</div>
</div>
</footer>
<script src="assets/js/script.js"></script>
</body>
</html>