-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPLPcontact.html
48 lines (48 loc) · 1.98 KB
/
PLPcontact.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
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="PLPstyle.css">
<title>Contact Information</title>
</head>
<body>
<div class="container">
<div class="header-top">
<header id="header">
<img src="https://s3.amazonaws.com/freecodecamp/freecodecamp-square-logo-large.jpg" alt="logo" id="header-img" style="height: 50px; width: 50px;">
<nav id="nav-bar">
<ul>
<li class="nav-link"><a href="PLPindex.html">Home</a></li>
<li class="nav-link"><a href="PLPabout.html">About</a></li>
<li class="nav-link"><a href="PLPcontact.html">Contact</a></li>
</ul>
</nav>
</header>
</div>
</div>
<div class="contact">
<div class="main-contact">
<form action="" method="get" class="form-example">
<div class="form-example">
<label for="name">Enter your name: </label>
<input type="text" name="name" id="name" placeholder="Jane Doe" required>
</div>
<div class="form-example">
<label for="email">Enter your email: </label>
<input type="email" placeholder="janedoe@domain.com" required>
</div>
<div class="form-example">
<label for="message" class="message">Tell us your concern: </label>
<textarea name="message" id="message" cols="40" rows="10">
Type your message here...
</textarea>
</div>
<div class="submit-contact">
<input type="submit" value="Submit Now">
</div>
</form>
</div>
</div>
</body>
</html>