-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutus.html
More file actions
113 lines (92 loc) · 4.82 KB
/
Copy pathaboutus.html
File metadata and controls
113 lines (92 loc) · 4.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WG908P378C"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-WG908P378C');
</script>
<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>Sobre Mí</title>
<link href="/css/normalize.css">
<link rel="stylesheet" href="/css/styles.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" rel="stylesheet">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png">
<link rel="manifest" href="/assets/site.webmanifest">
</head>
<body>
<header>
<nav class="header header-aboutus">
<a href="index.html" class="logo"><img src="/assets/logo.svg" type='img/svg'></a>
<input type="checkbox" id="check">
<label for="check" class="btn__menu">
<i class="fas fa-bars"></i>
</label>
<ul class="navbar__content" data-animation="center">
<li><a href="destinations.html" class="navbar__link">Destinos</a></li>
<li><a href="blog.html" class="navbar__link">Blog</a></li>
<li><a href="aboutus.html" class="navbar__link">Sobre Nosotros</a></li>
<li><a href="contact.html" class="navbar__link">Contacto</a></li>
</ul>
</nav>
</header>
<main class="main contenedor">
<section class="section--au">
<img src="/assets/portfolio.svg" alt="" class="img--au">
<div class="content--au">
<h1 class="title--au">Sobre Mí</h1>
<p class="description--au">Esta pagina fue hecha con la intencion de ayudar y brindar información con poca visibilidad acerca de oportunidades de residencia, trabajo, estudio a personas que esten interesadas en emigrar, tener un intercambio cultural o pasar un tiempo
en el exterior.<br><br> Mi nombre es Gastón, y con mis pocos conocimientos en Programación decidi hacer esta pagina para juntar toda la información relevante que esta dispersa en distintas paginas o redes sociales. Si tenes información
que crees que podria ser util, no dudes en contactarme, a traves de mis Redes sociales o mi Mail.
</p>
</div>
</section>
</main>
<footer class="footer">
<div class="footer__content">
<div class="footer__princ">
<a href="index.html">
<div class="footer__logo"></div>
</a>
<p class="footer__subtitle">Todos los derechos reservados 2021 - 2022</p>
</div>
<div class="footer__contact">
<h3 class="footer__title">Contactame</h3>
<p class="footer__paragraph">Escribime</p>
<div class="footer__links">
<a class="footer__link" href="mailto:gastonartigau@gmail.com" target="_blank">gastonartigau@gmail.com</a>
</div>
</div>
<div class="footer__follow">
<h3 class="footer__title">Seguime</h3>
<div class="footer__links--follow">
<a class="footer__link" target="_blank" href="https://twitter.com/Gaston_Artigau">Twitter</a>
<a class="footer__link" target="_blank" href="https://www.youtube.com/channel/UCerThjTYfurBsLOHsxcbw1g/featured">Youtube</a>
<a class="footer__link" target="_blank" href="https://www.linkedin.com/in/gaston-artigau/">LinkedIn</a>
<a class="footer__link" target="_blank" href="https://www.instagram.com/gaston_artigau/">Instagram</a>
</div>
</div>
<div class="footer__suscribe">
<h3 class="footer__title footer__title--suscribe">Suscríbete para recibir más noticias,<br> recomendaciones, etc.</h3>
<form class="footer__contente" name="contact" method="POST" data-netlify="true">
<p>
<input placeholder="Ingresa tu correo electrónico" class="footer__input" type="email" name="email" />
</p>
<p>
<div type="submit" class="footer__button"></div>
</p>
</form>
</div>
</div>
</footer>
</body>
</html>