-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (82 loc) · 3.37 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Home</title>
</head>
<body>
<header >
<h1>Hello, I'm <strong>nixo</strong></h1>
</header>
<section class="banner" id="home">
<img src="img/DALL·E 2022-07-29 14.37.02 - An expressive oil painting of a programmer in front of a computer, depicted as an explosion of a nebula.png" alt="picture">
<div>
<h2 class="info">
I'm a <strong>Full-Stack Developer</strong> from <strong>Argentina</strong>
</h2>
</div>
</section>
<nav class="navbar" id="skills">
<ul>
<!-- <li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li> -->
<li><a href="#home">Home</a></li>
<li><a href="#skills">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<!-- <a href="index.html">Home</a>
<a href="about.html">About me</a>
<a href="contact.html">Contact me</a> -->
</nav>
<main>
<h2>This are all my <em> skills </em></h2>
<div class="content1">
<div class="one">
<img src="img/js.png" alt="html">
<!-- JavaScript -->
</div>
<div>
<img src="img/python.png" alt="css">
<!-- Python -->
</div>
<div >
<img src="img/c.png" alt="css">
<!-- C++ -->
</div>
<div >
<img src="img/java.png" alt="css">
<!-- Java -->
</div>
<div >
<img src="img/figma.png" alt="css">
<!-- Figma -->
</div>
<div >
<img src="img/notion.png" alt="css">
<!-- Notion -->
</div>
</div>
<h2>My <em> projects </em></h2>
<div class="content2">
<button type="button"><h3>Personal Website (this one) 👨💻</h3></button>
<button type="button"><h3>Wave Portal 👋</h3></button>
<button type="button"><h3>Investment Dao 🧳</h3></button>
<button type="button"><h3>Shopify Orders Analytics 🛒</h3></button>
<button type="button" onclick="window.location.href='https://www.figma.com/proto/wHo8U9xJtM5icT7JTdjryG/Real-Estate-Crowdfunding---Biens?node-id=83%3A306&scaling=scale-down&page-id=0%3A1&starting-point-node-id=93%3A1187&show-proto-sidebar=1'"><h3>Real Estate Crowdfunding UI 🏗</h3></button>
<button type="button" onclick="window.location.href='https://www.figma.com/proto/9zdcusmdnaVi47OOXDXBrI/tp-dise%C3%B1o?node-id=70%3A1256&scaling=min-zoom&page-id=0%3A1&starting-point-node-id=70%3A1256&show-proto-sidebar=1'"><h3>Nespresso Membership concept UI ☕️</h3></button>
</div>
</main>
<section class="contact" id="contact">
<h2>Contact me!</h2>
<p>Send me an email and I'll get back to you as soon as possible</p>
<form>
<input type="email" name="email" placeholder="Type email & hit enter" required>
</form>
</section>
<footer>
<p class="copyright"> copyright 2022 nixo's website</p>
</footer>
</body>
</html>