-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
83 lines (77 loc) · 3 KB
/
contact.html
File metadata and controls
83 lines (77 loc) · 3 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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='UTF-8'>
<title>Echo Gaming</title>
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="nav-wrapper">
<div class="left-side">
<!-- The navigation menu -->
<div class="navbar">
<a href="index.html">Home</a>
<div class="subnav">
<button class="subnavbtn">Computer Science <i class="fa fa-caret-down"></i></button>
<div class="subnav-content">
<a href="java.html">Java</a>
<a href="python.html">Python</a>
<a href="html.html">HTML</a>
<a href="languages.html">Languages</a>
</div>
</div>
<div class="subnav">
<button class="subnavbtn">Hacks <i class="fa fa-caret-down"></i></button>
<div class="subnav-content">
<a href="https://sites.google.com/site/chromebookhack/">Chromebook Hack</a>
<a href="https://medium.com/@qwabenadhaniel24/how-to-hack-wifi-password-using-command-prompt-cmd-2019-d53c7f007e9">Wifi Hack</a>
</div>
</div>
<div class="subnav">
<button class="subnavbtn">Resources <i class="fa fa-caret-down"></i></button>
<div class="subnav-content">
<a href="https://docs.oracle.com/javase/7/docs/api/">Java API</a>
<a href="https://repl.it/~">Repl.it</a>
<a href="https://github.com/">Git Hub</a>
<a href="https://pythonanywhere.com/">Python Anywhere</a>
</div>
</div>
<a href="contact.html">Contact</a>
</div>
</div>
<div class="right-side">
<div class="brand">
Echo Gaming
</div>
</div>
</div>
<div class="content-wrapper">
<div class="profile-content-wrapper">
<h1>Website Survey:</h1>
<div class="container2">
<form action="action_page.php">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Enter first name..">
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Enter last name..">
<label for="country">Country</label>
<select id="country" name="country">
<option value="australia">Australia</option>
<option value="canada">Canada</option>
<option value="usa">USA</option>
<option value="mexico">Mexico</option>
<option value="china">China</option>
</select>
<label for="subject">How can I make this website better?</label>
<textarea id="subject" name="subject" placeholder="Write something.." style="height:200px"></textarea>
<input style="background-color: #b4840d" type="submit" value="Submit">
</form>
</div>
</div>
</div>
</div>
</div>
</body>
</html>