-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (103 loc) · 4.76 KB
/
Copy pathindex.html
File metadata and controls
116 lines (103 loc) · 4.76 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Landing Page HTML | AlexCG Design</title>
<link href="https://fonts.googleapis.com/css?family=Raleway:200,300,400,500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="estilos.css">
</head>
<body>
<header class="hero">
<div class="textos-hero">
<h1>Bienvenido a Website</h1>
<p>Creamos el mejor sitio web para ti</p>
<a href="#contacto">Contactame</a>
</div>
<div class="svg-hero" style="height: 150px; overflow: hidden;"><svg viewBox="0 0 500 150" preserveAspectRatio="none"
style="height: 100%; width: 100%;">
<path d="M0.00,49.98 C149.99,150.00 349.20,-49.98 500.00,49.98 L500.00,150.00 L0.00,150.00 Z"
style="stroke: none; fill: #fff;"></path>
</svg></div>
</header>
<section class="wave-contenedor website">
<img src="ilustracion1.svg" alt="">
<div class="contenedor-textos-main">
<h2 class="titulo left">Title of section</h2>
<p class="parrafo">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Incidunt enim reiciendis
molestias nam tempore. Ullam hic accusantium eligendi ipsam corrupti!</p>
<a href="" class="cta">Learn more</a>
</div>
</section>
<section class="info">
<div class="contenedor">
<h2 class="titulo left">Juntos podemos apoyar</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
</div>
</section>
<section class="cards contenedor">
<h2 class="titulo">Our services</h2>
<div class="content-cards">
<article class="card">
<i class="far fa-clone"></i>
<h3>Title Card</h3>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit.</p>
<a href="" class="cta">Learn more</a>
</article>
<article class="card">
<i class="fas fa-database"></i>
<h3>Title Card</h3>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit.</p>
<a href="" class="cta">Learn more</a>
</article>
<article class="card">
<i class="far fa-object-group"></i>
<h3>Title Card</h3>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit.</p>
<a href="" class="cta">Learn more</a>
</article>
</div>
</section>
<section class="galeria">
<div class="contenedor">
<h2 class="titulo">Our work</h2>
<article class="galeria-cont">
<img src="uno.jpg" alt="">
<img src="dos.jpg" alt="">
<img src="tres.jpg" alt="">
<img src="cuatro.jpg" alt="">
<img src="cinco.jpg" alt="">
<img src="seis.jpg" alt="">
</article>
</div>
</section>
<section class="info-last">
<div class="contenedor last-section">
<div class="contenedor-textos-main">
<h2 class="titulo left">Title of section</h2>
<p class="parrafo">Lorem ipsum dolor, sit amet consectetur adipisicing elit. Dolorum reprehenderit nostrum expedita quasi odio architecto laudantium sunt nemo dicta atque?</p>
<a href="" class="cta">Learn more</a>
</div>
<img src="ilustracion.svg" alt="">
</div>
<div class="svg-wave" style="height: 150px; overflow: hidden;"><svg viewBox="0 0 500 150" preserveAspectRatio="none"
style="height: 100%; width: 100%;">
<path d="M0.00,49.98 C149.99,150.00 349.20,-49.98 500.00,49.98 L500.00,150.00 L0.00,150.00 Z"
style="stroke: none; fill: #f5576c;"></path>
</svg></div>
</section>
<footer id="contacto">
<div class="contenedor">
<h2 class="titulo">Contact us</h2>
<form action="" class="form">
<input class="input" type="text" name="" id="" placeholder="Nombre">
<input class="input" type="email" name="" id="" placeholder="Email">
<textarea class="input" name="" id="" cols="30" rows="10" placeholder="Mensaje"></textarea>
<input class="input" type="submit" value="Enviar">
</form>
</div>
</footer>
<script src="https://kit.fontawesome.com/c15b744a04.js" crossorigin="anonymous"></script>
</body>
</html>