-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
30 lines (25 loc) · 989 Bytes
/
contact.html
File metadata and controls
30 lines (25 loc) · 989 Bytes
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
<!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>Document</title>
<link rel="stylesheet" href="contact.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Finlandica&family=Montserrat&family=Poppins:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<div class="contact-form">
<form>
<h1>Online contact form</h1>
<label for="email">E-mail</label>
<input type="email" required="" placeholder="Enter Your email" name="email">
<label for="message">Do you have any message for us?</label><br>
<textarea name="message" id="message" cols="30" rows="10"></textarea>
<input class="btn" type="button" value="SUBMIT">
</form>
</div>
</body>
</html>