-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
37 lines (34 loc) · 1.13 KB
/
Copy pathcontact.html
File metadata and controls
37 lines (34 loc) · 1.13 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
<!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="icon" type="image/x-icon" href="LOGO1.png" sizes="32x32">
<link rel="stylesheet" href="style.css">
<title>Contact page</title>
</head>
<body>
<!--Form contact-->
<section class="section form-contact">
<div class="container">
<h2>Thanks for Contact me</h2><br><br>
<form>
<label for="fname"> Name</label>
<input type="text" id="fname" name="fname">
<label for="lname"> Email </label>
<input type="text" id="lname" name="lname">
<label for="msg"> message</label>
<textarea id="msg" name="msg" rows="4" cols="130">
</textarea>
<input type="submit" value="Send" class="button">
<a href="index.html" class="button">Back to Home</a>
</form>
</div>
</section>
<footer>
<hr>
<p> FMS </p>
</footer>
</body>
</html>