-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
58 lines (45 loc) · 1.66 KB
/
contact.html
File metadata and controls
58 lines (45 loc) · 1.66 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!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>Contact</title>
<link rel="stylesheet" href="style.css">
<!--Añadir Iconos sociales-->
</head>
<body>
<button><a value="Go back!" onclick="history.back()">Go Back!</a></button>
<!-- Header ---------->
<header>
<h1>CSS Layout</h1>
<p>I am fulano, I studied WebDev</p>
</header>
<!-- Form ---------->
<h1>Contact form</h1>
<div class="form">
<form action="action_page.php">
<label for="fullname">Fullname</label>
<input type="text" id="fname" name="Fullname" placeholder="Juan Perez"><br>
<label for="phone">Phone</label>
<input type="tel" id="phone" name="Phone" placeholder="Phone Number"><br>
<label for="email">Email</label>
<input type="email" id="email" name="Email" placeholder="Email Address"><br>
<label for="address">Address</label>
<input type="text" id="fname" name="Fullname" placeholder="address"><br>
<label for="DNI">DNI/NIF/NIE</label>
<input type="number" id="DNI" name="DNI/NIF/NIE" placeholder="DNI/NIF/NIE"><br>
<textarea name="comments" rows="10" cols="30">
Write comments...
</textarea><br>
<input type="submit" name="submit" value="submit">
</form>
</div>
<!-- Footer -->
<footer>
<a href="">Icono 1</a>
<a href="">Icono 2</a>
<a href="">Icono 3</a>
</footer>
</body>
</html>