-
Notifications
You must be signed in to change notification settings - Fork 1
/
lead-gen-page-template.html
75 lines (64 loc) · 1.85 KB
/
lead-gen-page-template.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Lead Gen Page Template</title>
<meta name="description" content="Your website description here!">
<style>
*{
margin: 0;
padding: 0;
}
#hero{
display: flex;
height: 75vh;
}
#hero h1{
font-size: 390%
}
.left_hero {
width: 61.8vw; /* El 61.8% del viewport width */
background-color: red;
}
.right_hero {
width: 38.2vw; /* El 38.2% del viewport width */
background-color: blue;
}
.container{
margin: 0 15%;
}
#hero .container{
margin-top: 15%;
}
@media (max-width: 768px) {
#hero {
flex-direction: column; /* Cambia la dirección de la disposición flex a columna invertida */
height: auto;
}
#hero h1{
font-size: 300%
}
.left_hero, .right_hero {
width: 100%; /* Ancho completo en tamaños de pantalla móvil */
}
.right_hero{
max-height: 350px;
}
.left_hero{
padding-bottom: 50px;
}
}
</style>
</head>
<body>
<section id="hero">
<div class="left_hero">
<div class="container">
<h1>Headline - Benefit oriented offer</h1>
<p style="font-size: 150%;margin-top: 15px;">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Enim minima facere non error. Repudiandae hic, veniam omnis atque molestiae tenetur error, quasi deserunt ut maxime corrupti iure blanditiis harum nisi.</p>
</div></div>
<div class="right_hero"></div>
</section>
</body>
</html>