-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.html
50 lines (44 loc) · 1.83 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!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" />
<title>About Page</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="Contact.css" />
<link rel="stylesheet" href="style.css" />
<script defer src="style.js"></script>
<script defer src="Contact.js"></script>
</head>
<body>
<div id="nav1"></div>
<main class="container mt-4">
<form class="bg-dark border rounded mx-auto p-4">
<h1>Contact Me</h1>
<h4>My Email is [email protected]</h4>
<br>
<div class="form-group mb-3 row">
<label class="col-sm-12 col-md-4 col-lg-4 col-form-label" for="username" >Username:</label>
<div class="col-sm-12 col-md-7 col-lg-8">
<input type="text" class="form-control" id="username" placeholder="Your Name"/>
</div>
</div>
<div class="form-group mb-3 row">
<label class="col-sm-12 col-md-4 col-lg-4 col-form-label" for="email">Email:</label>
<div class="col-sm-12 col-md-7 col-lg-8">
<input type="email" class="form-control" id="email" placeholder="Your Email" />
</div>
</div>
<legend class="form-label pt-0">Message</legend>
<textarea class="form-control" rows="12" name=textarea placeholder="Input your message here!"></textarea>
<div class="form-group my-4">
<input type="submit" class="btn btn-primary w-50" value="Submit" />
</div>
</form>
</main>
</body>
</html>