-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
38 lines (35 loc) · 1.37 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
<!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</title>
<link rel="stylesheet" href="estilos.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700,800&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="container">
<nav>
<a href="#" id="icono" class="icono">Menú</a>
<div class="enlaces uno" id="enlaces">
<a href="">Inicio</a>
<a href="">Acerca de</a>
<a href="">Contacto</a>
</div>
</nav>
<div class="textos">
<h1>Hola Soy Julio</h1>
<h2>Hacemos la web ideal para ti</h2>
<a href="#">Contacto</a>
</div>
<img src="vector.png" alt="">
</div>
</header>
<div class="wave">
<div style="height: 150px; overflow: hidden;" ><svg viewBox="0 0 500 150" preserveAspectRatio="none" style="height: 100%; width: 100%;"><path d="M0.00,49.98 C150.00,150.00 349.20,-50.00 500.00,49.98 L500.00,150.00 L0.00,150.00 Z" style="stroke: none; fill: #fff;"></path></svg></div>
</div>
<script src="script.js"></script>
</body>
</html>