-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactme.html
37 lines (35 loc) · 1.3 KB
/
contactme.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
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<title>Contact Me</title>
<meta name="description" content="Contact me with technical inquiries or employment opportunities.">
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0">#removing this line as it causes issues with navbar scaling on mobile-->
<meta charset="UTF-8">
<link rel="icon" type="image/x-icon" href="FavIcon.svg">
<link href="styles.css" rel="stylesheet">
</head>
<body>
<navbar class="navbar">
<a href="index.html" class="logoanchor"><img class="logo" src="logo.png" alt="logo"></a>
<a class="navbarButton" href="index.html">Home</a>
<a class="navbarButton" href="portfolio.html">Portfolio</a>
<a class="navbarButton" href="aboutme.html">About Me</a>
<a class="navbarButton" href="contactme.html">Contact Me</a>
</navbar>
<main>
<form>
<label>Name:</label>
<input name="Name" id="name" required><br>
<label>Email Address:</label>
<input name="Email Address" id="email" required><br>
<label>Subject:</label>
<input name="Subject" id="subject" required><br>
<label>Message:</label><br>
<textarea name="Message" id="message" rows="40" cols="40"></textarea><br>
<button class="button" type="submit" required>Send Message</button>
</form>
</main>
<footer>
</footer>
</body>
</html>