-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
87 lines (87 loc) · 2.62 KB
/
contact.html
File metadata and controls
87 lines (87 loc) · 2.62 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
85
86
87
<!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" />
<script
src="https://kit.fontawesome.com/dddf381ff8.js"
crossorigin="anonymous"
></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="css/1001fonts-thuner-eula.txt" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Kanit:wght@300&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/styles.css" />
<title>Game Hub | Contact Us</title>
</head>
<body>
<header>
<img id="logo" src="images/GameHub_Logo.png" />
<nav class="nav-list">
<a href="index.html">store</a>
<a href="collection.html">collection</a>
<a href="about.html">about us</a>
<a href="contact.html">contact</a>
</nav>
</header>
<main>
<h1>How can we help?</h1>
<section class="contact-icons">
<div class="contact-icon">
<img src="images/phone-icon.jpg" alt="Call +11 345 67 890" />
<p>+11 345 67 890</p>
</div>
<div class="contact-icon">
<img
src="images/email-icon.jpg"
alt="Email us email@gamehub.support"
/>
<p>email@gamehub.support</p>
</div>
<div class="contact-icon">
<img src="images/faq-icon.jpg" alt="Frequently asked questions" />
<p>FAQ</p>
</div>
</section>
<section class="tickets">
<h3>Submit a ticket</h3>
<div class="ticket">
<input type="text" placeholder="Name" />
<input type="text" placeholder="Your email" />
<textarea
name=""
id="ticket-issue"
cols="60"
rows="10"
placeholder="What's the issue?"
></textarea>
<button class="submit-ticket">Submit</button>
</div>
</section>
<p class="support-opening-hours">
Our support team is standing by to assist you between 10:00 - 22:00,
every day
</p>
</main>
</body>
<footer>
<div class="footer-content">
<div class="footer-contact">
<a href="contact.html">Contact</a>
<p>email@gamehub.support</p>
<p>+11 345 67 890</p>
<p>FAQ</p>
</div>
<div class="footer-about">
<a href="about.html">About us</a>
</div>
<div class="footer-social">
<p>Find us on:</p>
</div>
<p>Copyright ©</p>
</div>
</footer>
</html>