-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (94 loc) · 3.87 KB
/
index.html
File metadata and controls
96 lines (94 loc) · 3.87 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset=" UTF8">
<meta name="description" content="Este es el prototipo de la página Navalu">
<meta name="robots" content="index,follow">
<title>Navalu</title>
<meta name="viewport" content="width=device-width, inictial-scale=1.0">
<link rel="stylesheet" href="./CSS/style.css">
</head>
<body>
<header>
<nav>
<ul class="landing-page-nav">
<li class="landing-page-nav__item"><a href="#">Home</a></li>
<li class="landing-page-nav__item"><a href="#">Desserts</a></li>
<li class="landing-page-nav__item"><a href="modelo_de_caja.html">Modelo de caja</a></li>
</ul>
</nav>
</header>
<main>
<h1>Greetings! Welcome to Navalu!</h1>
<p >Please let us know who you are!</p>
<p class="paragraph">Please let us know who you are!</p>
<p id="welcome">Please let us know who you are!</p>
<form action="">
<label for="name">
<span>What is your name?</span>
<input type="text" id="name" placeholder="Your Name" name="name" autocomplete="name">
</label>
<label for="date">
<span>When would you like to visit us?</span>
<input type="datetime-local" id="date" name="date">
</label>
<label for="time">
<span>What time would you like to visit us?</span>
<input type="time" id="time" name="time" value="Send">
</label>
<input type="submit">
</form>
<h4>These are some Desserts</h4>
<section>
<select name="desserts" id="">
<option value="Cupcake">Cupcake</option>
<option value="Apple Pie">Apple Pie</option>
<option value="Cheesecake">Cheesecake</option>
</select>
<input list="desserts">
<datalist id="desserts">
<option value="Cupcake"></option>
<option value="Apple Pie"></option>
<option value="Cheesecake"></option>
</datalist>
<button>
Send
</button>
<ul>
<li>
<a href="#"> Cupcake. </a><br>
<img src="images/cupcake.gif" class="image"/>
<video controls preload="auto" >
<source src="images/video_cupcake.mp4"/>
</video>
</li>
<li>
<a href="#"> Cheesecake.</a>
<figure>
<img class="image"
src="images/cheesecake.jpg"
alt="This is a Cheesecake"
/>
<figcaption>
This is a Cheesecake
</figcaption>
</figure>
</li>
<li>
<figure>
<a href="https://i0.wp.com/www.rejinilla.com/wp-content/uploads/2014/05/pay-de-manzana-19.jpg">
Apple Pay
</a><br>
<img class="image"
src="images/Apple Pie.jpg"
alt="This is an Apple Pie"
/>
</figure>
</li>
</ul>
</section>
</main>
<footer>
</footer>
</body>
</html>