-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (60 loc) · 2.93 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Iván Resume</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css">
<!-- Latest compiled and minified JQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"></script>
<!-- Latest compiled JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js"></script>
<!-- custom CSS -->
<link rel="stylesheet" href="src/css/index.css">
<!-- custom JS -->
<script src="src/js/index.js"></script>
</head>
<body>
<div class="card align-self-center">
<div class="card-header">
<img id="profile" src="res/images/profile.png" alt="profile_img" height="200px"></img>
<div id="welcome_text">
<h1>Hello!</h1>
<h3>Welcome to my site.</h3>
</div>
</div>
<div class="card-body">
<div class="row">
<div class="col-2 nav flex-column nav-pills">
<button id="left-button-home" class="nav-link active" data-bs-toggle="tab" data-bs-target="#home" type="button" role="tab" aria-controls="v-pills-home" aria-selected="true" onclick="showHome()">Home</button>
<button id="left-button-education" class="nav-link" data-bs-toggle="tab" data-bs-target="#education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="false" onclick="showEducation()">Education</button>
<button id="left-button-job_history" class="nav-link" data-bs-toggle="tab" data-bs-target="#job_history" type="button" role="tab" aria-controls="v-pills-job_history" aria-selected="false" onclick="showJobHistory()">Job History</button>
<!--<button class="nav-link" data-bs-toggle="tab" data-bs-target="#projects" type="button" role="tab" aria-controls="v-pills-projects" aria-selected="false" onclick="showProjects()">Projects</button>-->
<button id="left-button-contact" class="nav-link" data-bs-toggle="tab" data-bs-target="#contact" type="button" role="tab" aria-controls="v-pills-contact" aria-selected="false" onclick="showContact()">Contact</button>
</div>
<div class="col-1"></div>
<div id="i_content" class="col-8 align-self-center">
<script>$($("#i_content")[0]).load("src/html/home.html");</script>
</div>
</div>
</div>
<div class="card-footer">
<div class="row">
<div class="col-4 align-self-center" style="text-align: center;">
Made with ♥ by Iván
</div>
<div class="col-4 align-self-center" style="text-align: center;">
Send my an email at<br/>
<a href="mailto:ivanmarquezgarcia00@gmail.com">ivanmarquezgarcia00@gmail.com</a>
</div>
<div class="col-4 align-self-center" style="text-align: center;">
Hope you are happy! 😁
</div>
</div>
</div>
</div>
</body>
</html>