-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (88 loc) · 5.15 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
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/styles.min.css">
<script src="https://kit.fontawesome.com/85e16c3fb7.js" crossorigin="anonymous"></script>
<script src="./assets/workItems.js"></script>
<script src="./assets/projectsItems.js"></script>
<title>Lorenzo Nahuel Cea Ko</title>
</head>
<body>
<header>
<i id="hamburger" class="fas fa-bars"></i>
<nav id="nav">
<li><a onclick="closeModal()" href="#about">About</a></li>
<li><a onclick="closeModal()" href="#work">Work</a></li>
<li><a onclick="closeModal()" href="#projects">Projects</a></li>
<li><a onclick="closeModal()" href="#contact">Contact</a></li>
</nav>
</header>
<main>
<section id="front-page" class="odd">
<h1><span id="owner"></span></h1>
<h2>Web Developer</h2>
<div>
<a class="button" href="https://www.linkedin.com/in/lorenzoceako/" target="_blank" rel="noopener noreferrer"><i class="fab fa-linkedin"></i> Check my LinkedIn</a>
<a class="button" href="https://www.fiverr.com/lorenzocea/an-attractive-website-for-your-business-or-project" target="_blank" rel="noopener noreferrer"><img id="fiverr-icon" src="./assets/fiverr_icon.svg"> Find me in Fiverr</a>
<a class="button" href="https://www.github.com/koalter/" target="_blank" rel="noopener noreferrer"><i class="fab fa-github"></i> Check my GitHub</a>
</div>
</section>
<section id="about" class="odd">
<img id="profile-picture" src="./assets/Profile.jpeg" alt="profile">
<h2>About Me</h2>
<p>Hi! My name is <span id="first-name"></span>. I’m a software developer from Argentina.</p>
<p>I have several years of experience in both front-end and back-end technologies. I've been employed in IT companies such as Accenture and Hexacta.</p>
<p>I'm looking to work abroad. Down below you can check my portfolio. My contact info is also available if you want to chat about work or advisory</p>
</section>
<section id="work" class="even">
<h2>Work I Do</h2>
<div id="work-container">
</div>
<div id="work-arrows" class="arrows">
<button id="work-left-arrow" class="left-arrow" href="">«</button>
<button id="work-right-arrow" class="right-arrow" href="">»</button>
</div>
</section>
<section id="projects" class="odd">
<h2>Projects</h2>
<a id="projects-container" target="_blank" rel="noopener noreferrer">
</a>
<div id="projects-arrows" class="arrows">
<button id="projects-left-arrow" class="left-arrow" href="">«</button>
<div id="dot-container">
</div>
<button id="projects-right-arrow" class="right-arrow" href="">»</button>
</div>
</section>
<section id="contact" class="even">
<h2>Contact me</h2>
<div id="info">
<!-- <a><i class="fab fa-whatsapp"></i> +54 9 11 6474 6499</a> -->
<!-- <a href="https://formsubmit.co/el/mabafi" target="_blank" rel="noopener noreferrer"><i class="far fa-envelope"></i> Send me an email</a> -->
<a class="button" href="https://www.linkedin.com/in/lorenzoceako/" target="_blank" rel="noopener noreferrer"><i class="fab fa-linkedin"></i> Check my LinkedIn</a>
<a class="button" href="https://www.github.com/koalter/" target="_blank" rel="noopener noreferrer"><i class="fab fa-github"></i> Check my GitHub</a>
<a class="button" href="https://www.fiverr.com/lorenzocea/an-attractive-website-for-your-business-or-project" target="_blank" rel="noopener noreferrer"><img id="fiverr-icon" src="./assets/fiverr_icon.svg"> Find me in Fiverr</a>
</div>
<h3>Or send me a message below</h3>
<i id="btn-contact" class="fas fa-chevron-down"></i>
</section>
<section id="contact-b" class="odd">
<form id="form" method="POST" action="https://formsubmit.co/14ed9e1c1a5dfe94a686c30e512f491c">
<input type="hidden" name="_subject" value="koalter.github.io">
<input type="text" name="name" id="name" placeholder="your name" required>
<input type="text" name="phone" id="phone" placeholder="phone number" required>
<input type="email" name="email" id="email" placeholder="e-mail address" required>
<textarea name="message" id="message" cols="30" rows="10" placeholder="message..." required></textarea>
<input class="btn-submit orange-bg" type="submit" value="send">
</form>
</section>
</main>
<script src="./scripts/main.js"></script>
</body>
</html>