-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (54 loc) · 2.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JS Personal Website</title>
<link href="styles.css" rel="stylesheet" />
</head>
<body>
<header>
<h1>João Sacramento</h1>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<img src="Images/1688666204198.jpeg" alt="JS Photo">
<div class="about-text">
<h2>About Me</h2>
<p>Hello all! <br/>My name is João Sacramento and I live in Portugal.<br/>In this webpage I will show you some projects I already did for Codédex.<br/>You will be able to see a GIF of my Python Translator working and the logo of the restaurant I invented for the HTML final project.<br/>I will also suply a direct link to my Github page of each project so you can analyse the source code!</p>
</div>
</section>
<section id="projects">
<h2>Projects</h2>
<div class="python-translator">
<h3>Python Translator</h3>
<img src="Images/demo.gif" alt="Python Translator Demo">
<p>In this project I did a translator using Python and the Google Translator API. You can select the input and output languages from all over Google's list.</p>
<a href="https://github.com/JoaoMSacramento/python-translator-google-api/" target="_blank"><i>Source Code</i></a>
</div>
<hr>
<div class="restaurant-menu">
<h3>Restaurant Menu</h3>
<img src="Images/portalia-logo.png" alt="Restaurant Menu">
<p>In this project I did an HTML page for a restaurant that is a mix of Portuguese and Italian cousine.</p>
<a href="https://github.com/JoaoMSacramento/restaurant-menu/" target="_blank"><i>Source Code</i></a>
</div>
</section>
<section id="contact">
<h2>Contact</h2>
<p><b>Email:</b> [email protected]</p>
<p><b>Codédex:</b> <a href="https://www.codedex.io/@Sacramento" target="_blank">Link to my profile</a></p>
</section>
</main>
<footer>
<p>2024 João Sacramento</p>
</footer>
</body>
</html>