-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (77 loc) · 3.77 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
<!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">
<title>Personal Portfolio</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link
href="https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,900;1,700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav id="navbar">
<ul>
<li><a href="#welcome-section">About me</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contacts">Contacts</a></li>
</ul>
</nav>
<main>
<section id="welcome-section" class="welcome-section">
<h1>Iriangel Quintero</h1>
<p>I am web developer</p>
</section>
<section id="projects" class="projects">
<h2 class="project-header">Projects</h2>
<p>know more about my work</p>
<div class="project-grid">
<div class="project-tile">
<img src="img/imagenportfolio1.jpg" alt="portfolio">
<h3><a href="https://iriangelquintero.herokuapp.com/" target="_blank">Landing Page Personal portfolio</a></h3>
</div>
<div class="project-tile">
<img src="img/miwebresponsive1.jpg" alt="irisuniverse">
<h3><a href="https://irisuniverse.herokuapp.com/" target="_blank">Web Iri's Universe</a></h3>
</div>
<div class="project-tile">
<img src="img/technicalDocumentation.png" alt="technical Documentation Page Expresiones Regulares">
<h3><a href="https://iriquintero.github.io/technicalDocumentationPageExpresionesRegulares/"
target="_blank">Technical Documentation Page</a></h3>
</div>
<div class="project-tile">
<img src="img/productLandingPage.png" alt="product Landing Page">
<h3><a href="https://iriquintero.github.io/ProductLandingPageDogFood/"
target="_blank">Product Landing Page</a></h3>
</div>
<div class="project-tile">
<img src="img/surveyform.png" alt="survey form">
<h3><a href="https://iriquintero.github.io/surveyFormFreeCodeCamp/"
target="_blank">Survey Form</a></h3>
</div>
<div class="project-tile">
<img src="img/tributepage.png" alt="tribute page">
<h3><a href="https://cdpn.io/iriquintero/debug/RwRmVMr/nqkwvzWmZaqA"
target="_blank">Tribute Page</a></h3>
</div>
</div>
</section>
<section id="contacts">
<h2>Contacts</h2>
<p>Let's work together</p>
<div class="contact">
<a id="profile-link" class="btn contact-btn"href="https://github.com/iriquintero?tab=repositories" target="_blank"><i class="bi bi-github"></i>GitHub</a>
<a class="btn contact-btn"href="mailto:[email protected]"><i class="bi bi-envelope-fill"></i>[email protected]</a>
<a class="btn contact-btn"href="tel:+54-11-70354233"><i class="bi bi-whatsapp"></i>+54-11-70354233</a>
</div>
</section>
</main>
<footer>
<p>© Created for Iriangel Quintero-2021</p>
</footer>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</body>
</html>