-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (28 loc) · 1.15 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Telematics Web Server</title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<h1>Welcome to TWS Project 1</h1>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Sapiente doloremque obcaecati voluptate quisquam minus nemo sit ad odio molestiae animi consequatur debitis perferendis modi, illo dicta nobis deserunt, labore accusamus!</p>
<img src="/files/nature.jpg" alt="Nature" height="600" width="700">
<div class="container">
<form action="/confirmacion.html" method="post">
<div>
<label for="fname">Name</label>
<input type="text" id="fname" placeholder="First name...">
</div>
<div>
<label for="lname">Last name</label>
<input type="text" id="lname" placeholder="Last name...">
</div>
<div>
<input type="submit" value="Submit">
</div>
</form>
</div>
</body>
</html>