aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--css/style.css16
-rw-r--r--index.html52
2 files changed, 68 insertions, 0 deletions
diff --git a/css/style.css b/css/style.css
new file mode 100644
index 0000000..fcdd8ed
--- /dev/null
+++ b/css/style.css
@@ -0,0 +1,16 @@
+body {
+ background-color: #F0FFFF;
+ margin: 25px 10%;
+}
+
+p {
+ text-indent: 2em;
+}
+
+h1 {
+ color: #003333;
+ font-family: serif;
+ font-size: 1.8em;
+ font-variant: small-caps;
+ text-align: center;
+}
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..714f65b
--- /dev/null
+++ b/index.html
@@ -0,0 +1,52 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <title>&Iacute;&ntilde;igo Guti&eacute;rrez Fern&aacute;ndez</title>
+ <link rel="stylesheet" type="text/css" href="css/style.css">
+ </head>
+ <body>
+
+ <header>
+ <h1>&Iacute;&ntilde;igo Guti&eacute;rrez Fern&aacute;ndez</h1>
+ </header>
+
+ <p>
+ Welcome! I'm &Iacute;&ntilde;igo Guti&eacute;rrez Fern&aacute;ndez,
+ a Computer Software Engineering student from
+ <a href="https://en.wikipedia.org/wiki/Asturias">Asturias</a>,
+ Spain.
+ <a href="https://ingenieriainformatica.uniovi.es/inicio">
+ This is the webpage of my school</a>,
+ an institution part of the
+ <a href="https://www.uniovi.es/en/">University of Oviedo</a>.
+ </p>
+
+ <p>
+ Some of my work can be found at my
+ <a href="https://github.com/InigoGutierrez">GitHub page</a>, both for
+ University and for learning and having fun. There you will find:
+ </p>
+
+ <ul>
+ <li>For University</li>
+ <ul>
+ <li>A compiler for the C-- language</li>
+ </ul>
+ <li>For learning and fun</li>
+ <ul>
+ <li>Configurations and scripts I use on my machines</li>
+ <li>A tool for reading the Spanish Constitution on a terminal</li>
+ <li>A mainpage with search engines configured by a text file</li>
+ <li>Solutions to programming problems posted on aceptaelreto.com</li>
+ </ul>
+ </ul>
+
+ <p>
+ As of now I'm doing extracurricular practices at
+ <a href="https://gmeana.com/">GADD</a>, where I am part of a team
+ developing an online ticketing application.
+ </p>
+
+ </body>
+</html>