-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLanding page.html
58 lines (51 loc) · 1.84 KB
/
Landing page.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
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="es">
<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>Landing page</title>
<link rel="stylesheet" href="./styles/estilos_LandingPage.css">
</head>
<body>
<!-- Start Landing Page -->
<div class="landing-page">
<div class="container">
<div class="header-area">
<div class="logo">Grupo Médico Clínica <b>Bienestar</b></div>
<ul class="links">
<li>Home</li>
<li>Información</li>
<li>Iniciar Sesión</li>
</ul>
</div>
<div class="info">
<h1>Bienvenido a clínica Bienestar</h1>
<p>Institución médica de calidad para localidades de
difícil acceso o rurales donde podrán recibir atención medica
en cualquier momento recuerda no están solos nos tienen a nosotros.
</p>
<button>Button name</button>
</div>
<div class="image">
<img src="https://i.postimg.cc/65QxYYzh/001234.png">
</div>
<div class="clearfix"></div>
</div>
<div class="container">
<h1>¿Buscas contactarnos?
Estaremos encantados de recibir tu mensaje!
</h1>
<label for="">Nombre:</label>
<input type="text" placeholder="nombre" />
<br>
<label for="">Correo:</label>
<input type="text" placeholder="Correro electronico" />
<br>
<label for="">Mensaje:</label>
<input type="text" placeholder="Mensaje" />
</div>
</div>
<!-- End Landing Page -->
</body>
</html>