-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
91 lines (79 loc) · 3.66 KB
/
contact.html
File metadata and controls
91 lines (79 loc) · 3.66 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
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>GameX</title>
<!-- Import the webpage's stylesheet -->
<link rel="stylesheet" href="contact.css" />
<link rel="stylesheet" href="style.css" />
<script src="https://kit.fontawesome.com/dd76e34534.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="icon" href="https://cdn.glitch.me/ccd74a08-5814-4e0b-990f-30b66fc3f6f5%2FPOST%20PNG.png?v=1638858028894"
type="image/x-icon" />
</head>
<body>
<nav class="navbar">
<div class="navbarlinks" id="myTopnav">
<a href="./register.html"><i class="fa fa-fw fa-user"></i> Register</a>
<a href="./contact.html"><i class="fa fa-fw fa-envelope"></i> Contact Us</a>
<a href="./aboutUs.html"><i class="fa fa-users" aria-hidden="true"></i> About Us</a>
<a href="./games.html"><i class="fa fa-gamepad" style="font-size:20px"></i> Games</a>
<a href="javascript:void(0);" class="icon" onclick="resizeBrowser()">
<i class="fa fa-bars"></i>
</a>
</div>
<div class="logo">
<a href="./index.html">
<img src="https://cdn.glitch.me/ccd74a08-5814-4e0b-990f-30b66fc3f6f5%2FPOST.jpg?v=1638856188280"
alt="GameX Logo" id="logo" />
</a>
</div>
</nav>
<div class="container">
<div style="text-align:center">
<h2>Contact Us</h2>
<p>Swing by for a game or leave us a message:</p>
</div>
<div class="row">
<div class="column">
<img src="" style="width:100%" />
</div>
<div class="column">
<form action="https://formspree.io/f/mvolozgd" method="POST">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your first name.." />
<br>
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name.." />
<br>
<label for="country">Country</label>
<select id="country" name="country">
<option value="usa">USA</option>
<option value="australia">Australia</option>
<option value="canada">Canada</option>
<option value="china">China</option>
<option value="india">India</option>
<option value="germany">Germany</option>
<option value="finland">Finland</option>
<option value="mexico">Mexico</option>
<option value="other">Other</option>
</select>
<br />
<br />
<label for="subject">Subject</label>
<input type="text" id="subject" name="subject" placeholder="Subject" />
<br>
<label for="message">Your message</label>
<br />
<textarea id="message" name="message" placeholder="Write something.."
style="height:170px"></textarea>
<br />
<input type="submit" value="Submit" />
</form>
</div>
</div>
</div>
<!-- Import the webpage's javascript file -->
<script src="script.js"></script>
</body>
</html>