-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (39 loc) · 1.39 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
<!DOCTYPE html>
<html lang = 'es'>
<head>
<title>Bienvenido</title>
<meta charset = 'UTF-8' />
<meta name = 'viewport' content = 'width = device-width, initial-scale = 1'/>
<link href = 'style.css' rel = 'stylesheet'/>
<!-- importamos la fuente para rubik -->
<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=Rubik:ital,wght@0,300..900;1,300..900&display=swap' rel='stylesheet'>
<!-- importamos la fuente para rufina -->
<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=Rubik:ital,wght@0,300..900;1,300..900&family=Rufina:wght@400;700&display=swap' rel='stylesheet'>
</head>
<body>
<header>
<div class = 'logo' > GONZALEZ SANTIAGO </div>
<nav>
<ul>
<li><a href = 'index.html'>Inicio</a></li>
<li><a href = '#contacto'>Contacto</a></li>
</ul>
</nav>
</header>
<div class = 'hero'>
<div class = 'hero-content'>
<div class = 'left' >
<h1>Soy programador</h1>
<p>Construyo aplicaciones en Python dinamicas utilizando bases de datos relacionales</p>
</div>
<div class = 'right' >
<img src = 'big_data.png' >
</div>
</div>
</div>
</body>
</html>