Add index.html
This commit is contained in:
parent
beaf36189f
commit
d8d2529222
|
@ -0,0 +1,39 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Document</title>
|
||||||
|
<link rel="stylesheet" href="style.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<p> test </p>
|
||||||
|
<form action="/my-handling-form-page" method="post">
|
||||||
|
<p>
|
||||||
|
<label for="Lastname">LastName:</label>
|
||||||
|
<input type="text" id="Lastname" name="user_name" />
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<label for="surname">FirstName:</label>
|
||||||
|
<input type="text" id="Firstname" name="user_name" />
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<label for="mail">Email:</label>
|
||||||
|
<input type="email" id="mail" name="user_email" />
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<label for="sub">Subject:</label>
|
||||||
|
<textarea id="sub" name="user_sub"></textarea>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<label for="path">Path:</label>
|
||||||
|
<textarea id="path" name="user_path"></textarea>
|
||||||
|
</p>
|
||||||
|
<p class="button">
|
||||||
|
<button type="submit">Send your message</button>
|
||||||
|
</p>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue