Created
September 7, 2019 17:56
-
-
Save iamkeir/86685ee6f25732f77a0177821f71b8a2 to your computer and use it in GitHub Desktop.
My Portfolio
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>My Portfolio</title> | |
<link href="assets/css/main.css" rel="stylesheet" /> | |
</head> | |
<body> | |
<header> | |
<h1>My Portfolio</h1> | |
<nav> | |
<ul> | |
<li><a href="/">Home</a></li> | |
<li><a href="/about.html">About</a></li> | |
<li><a href="/work.html">Work</a></li> | |
</ul> | |
</nav> | |
</header> | |
<main> | |
<section> | |
<h2>About</h2> | |
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, <a href="#">quis nostrud exercitation</a> ullamco laboris nisi ut aliquip ex ea commodo consequat.</p> | |
<p>Lorem ipsum dolor sit amet, <strong>consectetur adipisicing elit</strong>, sed do <em>eiusmod tempor incididunt ut labore</em> et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p> | |
<p><a href="/about.html">More...</a></p> | |
</section> | |
<section> | |
<h2>Recent Work</h2> | |
<ul> | |
<li> | |
<a href="#"> | |
<img src="assets/img/smallDrops.jpg" alt="Drops of rain" /> | |
</a> | |
</li> | |
<li> | |
<a href="#"> | |
<img src="assets/img/smallDrops.jpg" alt="Drops of rain" /> | |
</a> | |
</li> | |
<li> | |
<a href="#"> | |
<img src="assets/img/smallDrops.jpg" alt="Drops of rain" /> | |
</a> | |
</li> | |
<li> | |
<a href="#"> | |
<img src="assets/img/smallDrops.jpg" alt="Drops of rain" /> | |
</a> | |
</li> | |
</ul> | |
<nav> | |
<ul> | |
<li><a href="/work.html">See more ></a></li> | |
</ul> | |
</nav> | |
</section> | |
<section> | |
<h2>Get In Touch</h2> | |
<p>You can <a href="#">email me</a> or fill out the form</p> | |
<form action=""> | |
<label for="name">Name</label> | |
<input type="text" name="name" id="name" placeholder="Joe Bloggs" /> | |
<label for="email">Email</label> | |
<input type="email" name="email" id="email" placeholder="[email protected]" /> | |
<label for="message">Message</label> | |
<textarea name="message" id="message" placeholder="Your message"></textarea> | |
<button type="submit">Send</button> | |
</form> | |
</section> | |
</main> | |
<footer> | |
<p>Copyright 2019</p> | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment