-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.html
28 lines (25 loc) · 984 Bytes
/
Contact.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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>✨ Brandon's Contact</title>
<link rel="Stylesheet" href="styles.css">
</head>
<body>
<a href="index.html" class="button">Go back</a>
<h3>My Contact Details</h3>
<p class="same">Vancouver, BC. Canada</p>
<p class="same">6041231234</p>
<p class="same">brandon@gmail.com</p>
<br>
<form action="mailto:branamaya.ba@gmail.com" method="post" enctype="text/plain" >
<label class="same">Your Name:</label>
<input type="text" name="yourName"><br>
<label class="same">Your Email:</label>
<input type="email" name="yourEmail"><br>
<label class="same">Message:</label><br>
<textarea name="yourMessage" rows="10" cols="30"></textarea><br><br>
<!-- <input type="submit" name="Save" onclick="alert('Alright! my agent will contact you soon')"> -->
<a type="submit" class="button" name="Save" onclick="alert('Alright! my agent will contact you soon')">Send it</a>
</form>
</body>
</html>