-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
122 lines (100 loc) · 5 KB
/
contact.html
File metadata and controls
122 lines (100 loc) · 5 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
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
117
118
119
120
121
122
<!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">
<link rel="stylesheet" href="css/normalize.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<script src="js/script.js" defer></script>
<title>Coinbase</title>
</head>
<body>
<nav>
<a class = "coinbase" href = "index.html">Coinbase</a>
<a class = "pages" href = "contact.html">Contact Us</a>
<a class = "pages" href = "products.html">Products</a>
<a class = "pages" href = "learn.html">Learn</a>
<button id= "menu" onclick = "dropdownNav()" > <!-- Hamburger menu icon -->
<svg>
<rect rx = 1px ry = 1px width = 20px height = 3px></rect>
<rect y = 6px rx = 1px ry = 1px width = 20px height = 3px></rect>
<rect y = 12px rx = 1px ry = 1px width = 20px height = 3px></rect>
</svg>
</button>
<div id = "dropdown-container"> <!-- Dropdown section -->
<div id = "dropdown">
<a class = "pages-dropdown" href = "contact.html">Contact Us</a>
<a class = "pages-dropdown" href = "products.html">Products</a>
<a class = "pages-dropdown" href = "learn.html">Learn</a>
</div>
</div>
</nav>
<hr>
<main>
<section class = "contact-form-container">
<form class = "contact-form" id = "forms" method="post">
<h1> Contact Us</h1>
<!--Name-->
<label for="fname">Name:</label><br>
<input type="text" placeholder = "Enter your name" id="fname" name="fname" required>
<p id = "name-valid"></p><br>
<!--Email-->
<label for="femail">Email:</label><br>
<input type="email" placeholder = "Enter your email" id="femail" name="femail" required>
<p id = "email-valid"></p><br>
<!--Type of question-->
<label for="area">What is your message about?</label><br>
<select id="area" name="area" required onchange ="optionOthers(this.value)">
<option value="" disabled selected>--Please select an option--</option>
<option value="Cryptocurrencies">Cryptocurrencies</option>
<option value="Coinbase App">Coinbase App</option>
<option value="Coinbase Card">Coinbase Card</option>
<option value="Others">Others</option>
</select>
<p id = "option-valid"></p><br>
<!--Will be hidden unless 'others' is chosen-->
<label id="other-tag" for="other" style="visibility:hidden;">Type of message (maximum characters: 250):</label><br>
<input type="text" id="other" name="other" style='display:none;'><br>
<!--Comments-->
<label for="desc">Comments:</label><br>
<textarea id="desc" placeholder="Description" name="description"></textarea><br>
<!--Button-->
<button type = "submit" id = "fsubmit" name="fsubmit">Look forward to reading your message </button>
</form>
</section>
</main>
<!--Footer-->
<footer class = "footer">
<ul>
<li class = "footer-sub">Learn</li>
<li><a href = "learn.html">Cryptocurrencies</a></li>
<li><a href = "index.html#about-coinbase">About</a></li>
<li><a href = "index.html#mission">Mission</a></li>
</ul>
<ul>
<li class = "footer-sub">Products</li>
<li><a href = "products.html#app">App</a></li>
<li><a href = "products.html#card">Card</a></li>
</ul>
<ul>
<li class = "footer-sub">Support</li>
<li><a href = "contact.html">Contact Us</a></li>
</ul>
<ul>
<li class = "footer-sub">Social</li>
<li><a href = "https://www.facebook.com/Coinbase/">Facebook</a></li>
<li><a href = "https://twitter.com/coinbase?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor">Twitter</a></li>
<li><a href = "https://blog.coinbase.com">Blog</a></li>
</ul>
<ul>
<li class = "footer-sub">Get the app</li>
<li><a href = "https://apps.apple.com/us/app/coinbase-trade-btc-eth-shib/id886427730">
<img src = "assets/app-store.jpg" alt = "Download from App Store"></a></li>
<li><a href = "https://play.google.com/store/apps/details?id=com.coinbase.android&hl=en&gl=US">
<img src = "assets/google-play.jpg" alt = "Download from Google Play"></a></li>
</ul>
</footer>
</body>
</html>