-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (62 loc) · 2.95 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="This page is the project of the WDD 130 course made by Ariel Antequiera">
<meta name="author" content="Ariel Antequiera">
<link rel="stylesheet" href="./styles/styles.css">
<title>Ariel Antequiera | WDD 130</title>
</head>
<body>
<header>
<nav>
<a href="#">Home</a>
<a href="wwr/index.html">Rafting Website</a>
<a href="wwr/site-plan-rafting.html">Rafting Siteplan</a>
<a href="https://www.linkedin.com/in/arielantequiera/" target="_blank">Linkedin</a>
<a href="https://www.facebook.com/arielantequiera/" target="_blank">Facebook</a>
</nav>
</header>
<div class="grid">
<main>
<h1>Ariel Antequiera | WDD 130</h1>
<img src="./images/profile.jpg" alt="Ariel Antequiera profile pic" width="200">
<p>
Hello! My name is Ariel Antequiera and I am from Buenos Aires,
Argentina. I am a lawyer, and I hope soon also a software developer. I
keep trying to learn and improve everyday. Nowadays, I work for insurance companies and legal firms.
I am married since six years ago, and both (my wife and I) are members of the Church of Jesus Christ of
Latter-day Saints.
</p>
<br>
<ul class="box">
<li><a href="https://www.churchofjesuschrist.org/temples/details/buenos-aires-argentina-temple?lang=eng"
target="_blank">Buenos Aires Argentina Temple</a></li>
<li><a href="https://www.churchofjesuschrist.org/temples/details/buenos-aires-city-center-argentina-temple?lang=eng"
target="_blank">Buenos Aires City Center Argentina Temple</a></li>
<li><a href="https://www.churchofjesuschrist.org/temples/details/nauvoo-illinois-temple?lang=eng"
target="_blank">Nauvoo Illinois Temple</a></li>
</ul>
</main>
<aside class="box">
<h2>Buenos Aires</h2>
<img src="./images/buenosaires.jpg" alt="Buenos Aires - Argentina" width="200">
<p>
Buenos Aires is the capital city of Argentina. Is famous for their
beauty, french style and diversity. It has some landmarks like: The
Colon Theather, the obelisco (obelisk), the english tower, the
mechanical flower and others. It also has a great cultural and
entertainment life.
</p>
</aside>
</div>
<footer>
<p>
©️ 2023 Ariel Antequiera - Building websites with <span class="heart">♡</span> from Buenos Aires,
Argentina, to the world.
</p>
</footer>
</body>
<!-- Last edition: Sep 18 2023 (week 02) -->
</html>