-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
24 lines (24 loc) · 892 Bytes
/
form.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
<html>
<head>
<title>Let's talk</title>
<meta charset="utf-8">
<script src="https://kit.fontawesome.com/350d59dd88.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<div class="card">
<form action="form_responses.html">
<label for="message" class="lable">Your message:</label><br>
<p><input type="message" id="info_field" name="message"></p>
<label for="fiel" class="lable">Name:</label><br>
<p></p><input type="text" id="info_field" name="name"></p>
<label for="email" class="lable">Email:</label><br>
<p><input type="text" id="info_field" name="email"></p>
<input type="submit" value="Send" id="btn-yellow">
</form>
</div>
<div class="container">
</body>
</html>