-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (102 loc) · 3.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Andres Ordonez</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="css/index.css" />
</head>
<body>
<nav class="main-navbar" id="main-navbar">
<div class="main-navbar--title"><a href="#"><a>ndrés</a></div>
<div class="main-navbar--menu">
<ul>
<li><a href="projects.html">Projects</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="#about-section">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<main>
<header>
<div class="header-container">
<div class="header-container--photo">
<img src="profile_photo2.png">
</div>
<div class="header-container--title">
<h1><span style="font-size:25px">Hello,</span><br />
<span style="font-size:55px; font-weight:bold">I'm Andres Ordonez</span><br />
<span style="font-size:35px; color:#689af8">Software Developer</span><br />
</h1>
</div>
</div>
</header>
<section class="projects-section">
<div class="projects-section--featured">
<div id="title">
<h2>Featured Projects</h2>
</div>
<div class="projects-section--featured-projects">
<div class="projects-section__project">
<h3>Featured Project 1</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua.</p>
</div>
<div class="projects-section__project">
<h3>Featured Project 2</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua.</p>
</div>
<div class="projects-section__project">
<h3>Featured Project 3</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna
aliqua.</p>
</div>
</div>
<div class="projects-section--button">
<a href="projects.html">Learn More</a>
</div>
</div>
</section>
<section class="about-section" id="about-section">
<div class="about-section--title">
<h2>About Me</h2>
</div>
<div class="about-section--content">
<p>
Hi, I'm Andres, currently based in New York City. I am a creative professional
who will bring to life your digital projects and ideas. I have over 4 years of experience in the Tech
industry, working across operational and analytical roles. I'm passionate about Software development and
creating digital
products that bring value to people's lives.
</br></br>
In my spare time, I enjoy photography (IG: @techytravel), playing piano, and reading.
</p>
</div>
</section>
<section class="footer-section">
<p> Designed and Developed by Andres Ordonez
<i class="fa-brands fa-linkedin"></i>
</p>
</section>
</main>
<script>
var navBar = document.getElementById("main-navbar");
window.onscroll = function () {
"use strict";
if (document.body.scrollTop >= 20 || document.documentElement.scrollTop >= 20) {
navBar.classList.add("scroll");
} else {
navBar.classList.remove("scroll");
}
};
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous">
</script>
</body>
</html>