-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (82 loc) · 5.29 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
<!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">
<!-- Adding Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Adding my personal CSS file -->
<link rel="stylesheet" href="./css/style.css">
<link rel="shortcut icon" href="./images/face.png" type="image/x-icon">
<!-- Adding description, keywords, and title for SEO -->
<meta name="description" content="Needing a supervisor in the BPO industry? Needing a front-end developer? You've arrived at the right place! Make sure to click in and read everything about me on this page.">
<meta name="keywords" content="Vargas Luis, Luis Vargas, front-end, developer, supervisor, support, BPO industry, customer service, team lead, software, HTML, CSS, SCSS, Bootstrap, SEO, Git, Github">
<title>Luis Vargas - Front-end Developer, Gaming Support Supervisor</title>
</head>
<body>
<!-- Bootstrap navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="./index.html">Luis Vargas</a>
<button class="navbar-toggler me-5" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse me-5" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="./index.html">About me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./pages/work-experience.html">Work Experience</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./pages/portfolio.html">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./pages/education.html">Education</a>
</li>
<!-- Dropdown menu in navbar -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Hobbies
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<li><a class="dropdown-item" href="./pages/hobbies/football.html">Football</a></li>
<li><a class="dropdown-item disabled" href="./pages/hobbies/tv-shows.html">TV Shows</a></li>
<li><a class="dropdown-item disabled" href="./pages/hobbies/movies.html">Movies</a></li>
<li><a class="dropdown-item" href="./pages/hobbies/videogames.html">Videogames</a></li>
<li><a class="dropdown-item disabled" href="./pages/hobbies/crypto.html">Cryptocurrency</a></li>
</ul>
</li>
</ul>
</div>
<a class="navbar-brand" target="_blank" href="https://www.linkedin.com/in/luis--vargas/"><img src="./images/linkedin.svg" alt="LinkedIn Logo"></a>
</div>
</nav>
<main>
<h1>So, who am I?</h1>
<p>
I was born in Venezuela in 1998, in a small city called Punto Fijo. Indoor football is a big part of my life and I started playing it since I was 4 years old, with my older brother (who was 9 years old at the time). I started playing on a competitive level in highschool, when I was 11 years old. This is when a small free-time hobby became a passion. I started playing every minute I could get, every single highschool recess, on football fields near my house, on private fields that we (my highschool friends and I) rented, and I even joined an official indoor football club (Club Miramar). I was basically living and breathing indoor football. As you can see, indoor football was a very important part of my childhood, and football in general, is a very important part of who I am.
</p>
<p>
</p>
</main>
<footer class="footer mt-auto py-3 text-center bg-light">
<div class="container">
<span class="text-muted">Copyright, Luis Vargas, 2023.
<br>All rights reserved.
</span>
</div>
</footer>
<!-- Do NOT move the scripts from here. They need to be at the end of the body. Adding my personal js file -->
<script src="./js/main.js"></script>
<!-- Adding bootstrap's js file -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous">
</script>
</body>
</html>