Skip to content
This repository has been archived by the owner on Jul 15, 2021. It is now read-only.

Edit index.html #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 34 additions & 31 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,51 +10,54 @@

<body>

<div class="header">
<header>
<h1>Sergio Cruz</h1>
<h2>Application Developer</h2>

<ul class="nav">
<nav>
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
</nav>
</header>

<div class="tagline">
<div class="content-wrapper">
<h3>A bit more about me</h3>
<p>Hey I am Sergio, I work for <a target="_blank" href="https://www.codeschool.com">Code School</a> and I love writing JavaScript!</p>
</div>
</div>
<main>
<section class="tagline">
<div class="content-wrapper">
<h3>A bit more about me</h3>
<p>Hey I am Sergio, I work for <a target="_blank" href="https://www.codeschool.com">Code School</a> and I love writing JavaScript!</p>
</div>
</section>

<section class="skills">
<div class="content-wrapper">
<h3>Skills</h3>
<p>Here are some of the technologies I enjoy writing day-to-day:</p>
<ul>
<li>HTML &amp; CSS</li>
<li>Node.js</li>
<li>React</li>
<li>Angular 2</li>
<li>Webpack</li>
</ul>
</div>
</section>

<div class="skills">
<div class="content-wrapper">
<h3>Skills</h3>
<p>Here are some of the technologies I enjoy writing day-to-day:</p>
<ul>
<li>HTML &amp; CSS</li>
<li>Node.js</li>
<li>React</li>
<li>Angular 2</li>
<li>Webpack</li>
</ul>
</div>
</div>

<div class="contact">
<div class="content-wrapper">
<h3>How to contact me</h3>
<p>The easiest way to contact me is via twitter: <a target="_blank" href="https://twitter.com/hashtagserg">@hashtagserg</a></p>
</div>
</div>
<section class="contact">
<div class="content-wrapper">
<h3>How to contact me</h3>
<p>The easiest way to contact me is via twitter: <a target="_blank" href="https://twitter.com/hashtagserg">@hashtagserg</a></p>
</div>
</section>
</main>

<div class="footer">
<footer>
<div class="content-wrapper">
<h3>Credits</h3>
<p>This portfolio was created using <a href='https://www.codeschool.com'>Code School's</a> <a href='https://github.com/codeschool/SemanticHTMLPortfolioProject'>Semantic HTML Portfolio Project</a> template.</p>
</div>
</div>
</footer>

</body>

Expand Down