Add first HTML practice

This commit is contained in:
Nicolás A. Ortega Froysa 2021-09-21 20:35:18 +02:00
parent 3485cb57d6
commit 7ae05792eb
5 changed files with 100 additions and 0 deletions

View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>Contact</title>
</head>
<body>
<h1>Nicolás A. Ortega Froysa</h1>
<p><a href="index.html" >Home</a> | <a href="personal-information.html" >Personal Information</a> | <a href="studies.html" >Studies</a> | <a href="experience.html" >Experience</a> | <a href="contact.html" >Contact</a></p>
<hr />
<h2>Contact</h2>
<p>You can contact me via e-mail at <a href="mailto:nicolas@ortegas.org" >nicolas@ortegas.org</a>.</p>
</body>
</html>

View File

@ -0,0 +1,46 @@
<!DOCTYPE html>
<html>
<head>
<title>Experience</title>
</head>
<body>
<h1>Nicolás A. Ortega Froysa</h1>
<p><a href="index.html" >Home</a> | <a href="personal-information.html" >Personal Information</a> | <a href="studies.html" >Studies</a> | <a href="experience.html" >Experience</a> | <a href="contact.html" >Contact</a></p>
<hr />
<h2>Experience</h2>
<h3>Skills</h3>
<table>
<tr>
<th>Skill</th>
<th>Exp. Level</th>
</tr>
<tr>
<td>GNU/Linux</td>
<td>10 years</td>
</tr>
<tr>
<td>C/C++</td>
<td>6 years</td>
</tr>
<tr>
<td>x86 Assembly</td>
<td>3 years</td>
</tr>
<tr>
<td>English</td>
<td>Native</td>
</tr>
<tr>
<td>Spanish</td>
<td>Native</td>
</tr>
</table>
<h3>Projects</h3>
<h4>DMUX</h4>
<p>Collaborative project written in C++, aiming to create a 3D derby-style shooter game.</p>
<h4>Colonel</h4>
<p>A personal kernel project written in C and assembly.</p>
<h4>Indivisible</h4>
<p>Highly optimized prime number generator and tester (re)written in Rust.</p>
</body>
</html>

View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>Home Page</title>
</head>
<body>
<h1>Nicolás A. Ortega Froysa</h1>
<p><a href="index.html" >Home</a> | <a href="personal-information.html" >Personal Information</a> | <a href="studies.html" >Studies</a> | <a href="experience.html" >Experience</a> | <a href="contact.html" >Contact</a></p>
<hr />
<h2>Home Page</h2>
<p>Welcome to my n<sup>th</sup> webpage. You can find my personal website at <a href="https://themusicinnoise.net/" >https://themusicinnoise.net/</a>.</p>
</body>
</html>

View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>Personal Information</title>
</head>
<body>
<h1>Nicolás A. Ortega Froysa</h1>
<p><a href="index.html" >Home</a> | <a href="personal-information.html" >Personal Information</a> | <a href="studies.html" >Studies</a> | <a href="experience.html" >Experience</a> | <a href="contact.html" >Contact</a></p>
<hr />
<h2>Personal Information</h2>
<p>I am Spanish-American, and I live in Seville, Spain. I speak English and Spanish natively.</p>
</body>
</html>

View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>Studies</title>
</head>
<body>
<h1>Nicolás A. Ortega Froysa</h1>
<p><a href="index.html" >Home</a> | <a href="personal-information.html" >Personal Information</a> | <a href="studies.html" >Studies</a> | <a href="experience.html" >Experience</a> | <a href="contact.html" >Contact</a></p>
<hr />
<h2>Studies</h2>
<h3>International Baccalaureate</h3>
<p><i>Graduate of 2015</i></p>
<p>Higher level exams in Economics, English, and Spanish.</p>
</body>
</html>