-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContactUs.html
116 lines (87 loc) · 4.15 KB
/
ContactUs.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<!--Title(begin)-->
<title>Multiversal Games</title>
<!--Title(end)-->
<link rel="stylesheet" href="styles/home.css">
<link rel="stylesheet" href="styles/header.css">
<link rel="stylesheet" href="styles/footer.css">
<script src="scripts/header.js"></script>
</head>
<!--Basic code that links css files to html website-->
<body>
<div class="banner">
<!--Navigation Bar(begin)-->
<header>
<a href="home.html"><img src="images/sideLogo.png" class="logo"></a>
<nav>
<ul class="nav_links">
<li><a class="nav-link" href="home.html#about-us">About Us</a></li>
<li><a href="ContactUs.html" style="color: #ffffff">Contact</a></li>
<li>
<!--Dropdown for games-->
<!--Dropdown for games: This code uses dropdown-link class from the css file to give the game titles the attribute to display a dropdown menu of all the games.-->
<div class="dropdown">
<button class="dropdownBtn">Games</button>
<div class="dropdown-menu">
<table class="dropdown-links">
<tr>
<td><a href="AradhayaMukhraiya.html" class="dropdown-link">Avillius Adventure</a></td>
</tr>
<tr>
<td><a href="DhruvanChandrupatla.html" class="dropdown-link">Artificial Apocolypse</a></td>
</tr>
<tr>
<td><a href="RajatPatel.html" class="dropdown-link">The Locked Laptop</a></td>
</tr>
<tr>
<td><a href="AdishKuthyarSupreeth.html" class="dropdown-link"></span>Quantum Computer</a></td>
</tr>
</table>
</div>
</div>
<!--Dropdown end-->
</nav>
<form action="checkout.html"><button class="buy" href="">BUY NOW</button></form>
</header>
<div class="content">
<h1 style="margin-top:500px">Contact Us</h1>
<p style="text-align:center"> Do you require support in purchasing, pricing, games or anything else? Feel free to contact us via mail or phone:</p>
<p style="text-align:center"> +61 491 672 000</p>
<p style="text-align:center"> +61 423 074 889</p>
<p style="text-align:center"> +61 466 265 772</p>
<p style="text-align:center"> +61 432 785 439</p>
<p style="text-align:center">[email protected]</p>
<!--Simple code showing phone numbers and aligning all text to the center of the webpage-->
<!--Footer (begin)-->
<footer>
<div class="footer-container">
<!--Social icons (start)-->
<div class="social-icons">
<a class="social-button" href="https://youtube.com"><img src="images/youtube.svg" width="50px" height="50px"></a>
<a class="social-button" href="https://facebook.com"><img src="images/facebook.svg" width="50px" height="50px"></a>
<a class="social-button" href="https://twitter.com"><img src="images/twitter.svg" width="50px" height="50px"></a>
<a class="social-button" href="https://linkedin.com"><img src="images/linkedin.svg" width="50px" height="50px"></a>
<a class="social-button" href="https://gmail.com"><img src="images/email.svg" width="50px" height="50px"></a>
</div>
<!--Social icons (end)-->
<!--The SVG images of social media platforms have been linked from .SVG files in the images folder.-->
<div class="footerNavigation">
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="ContactUs.html">Contact Us</a></li>
<li><a class="nav-link" href="home.html#about-us">About Us</a></li>
<li><a class="nav-link" href="home.html#Pricing">Pricing</a></li>
<li><a href="checkout.html">Checkout</a></li>
</ul>
</div>
<!--Simple href code to redirect the user to the webpage the text states it will take them to-->
</div>
<div class="copyrightsection">
<p>©Multiversal Games 2023, Copyright all rights reserved</p>
</div>
</footer>
<!--Footer (end)-->
</html>
</body>