-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (29 loc) · 1.33 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
32
33
34
35
36
<!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>Mi sitio web</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
</head>
<body>
<h1>Mi sitio web</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellat voluptates repellendus voluptatibus, sunt asperiores officia eligendi numquam itaque quos quis perferendis rerum, eos, animi culpa? Dolores architecto numquam animi quam!</p>
<a href="about.html"></a>
<a href="portfolio.html"></a>
<form class="container" netlify="true">
<h2>Escríbeme tus comentarios</h2>
<div class="mb-3">
<label for="fullnameInput" class="form-label">Tu Nombre completo</label>
<input type="text" class="form-control" id="fullnameInput" name="fullName">
</div>
<div class="mb-3">
<label for="commentInput" class="form-label">Comentario</label>
<textarea class="form-control" id="commentInput" name="comment"></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</body>
</html>