-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (87 loc) · 2.99 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
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
<!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>Matcha</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fascinate&display=swap" rel="stylesheet">
</head>
<body>
<section class="fixed">
<header class="header">
<!-- Regresar página principal -->
<a href="/" class="logo">
<img src="https://getmatcha.com/wp-content/uploads/2020/01/Icon-green.png" alt="Matcha">
</a>
<!-- Menú -->
<nav class="navbar">
<ul>
<li>Platform</li>
<li>Pricing</li>
<li>Customers</li>
<li>Resources</li>
<li>About</li>
</ul>
</nav>
<!-- Acciones -->
<div class="actions">
<a href="">Sign In</a>
<button>Start free trial</button>
</div>
</header>
</section>
<section class="main">
<h1>Build your web. Build your business</h1>
<p>Instantly publish articles, drive more traffic, grow your email list, and see your blog's impact on sales</p>
<!-- Formulario -->
<form>
<input type="email" placeholder="Introduce tu Email" />
<button type="submit">
Try it now →
</button>
</form>
<p>
Start publishing today with a <strong>7-day trial.</strong>
</p>
<p>
<strong>No credit card</strong> required.
</p>
<img src="https://ignos.blog/wp-content/uploads/2021/04/capterra.png" alt="Imagen capterra" />
</section>
<section class="video">
<div class="imagen_del_video">
<video width="720" controls
poster="https://cdn.videvo.net/videvo_files/video/premium/video0036/thumbnails/computer_code00_small.jpg">
<source src="computer_code00_preview.mp4" type="video/mp4">
<source src="computer_code00_preview.webm" type="video/webm">
</video>
<img
src="https://images.vexels.com/media/users/3/206269/isolated/preview/5bf110f14d50531aaca26c251c3441aa-doodle-de-flecha-vertical.png"
alt="promo">
</div>
<article class="publicidad">
<h3>Publish to your blog in minutes, not hours.</h3>
<p>
Your blog is your most powerful asset to build, engage, and retain a loyal audience.
But you don’t have hours to create content that may or may not work. With Matcha,
instantly publish from our library of 10,000+ professionally written articles and
build your email list faster with our powerful conversion tool.
</p>
<form>
<p>Start publishing today</p>
<input type="email" placeholder="Introduce tu Email" />
<button type="submit">
Start My Trial
</button>
</form>
</article>
</section>
<br>
<br>
<br>
</body>
</html>