Commit d277a1cc authored by Raphael Alampay's avatar Raphael Alampay

Updated homework for 060081

parents
<!DOCTYPE html>
<html>
<head>
<title>My Website - About</title>
</head>
<body>
<h1>About Me</h1>
<ul>
<li>
<a href="index.html">Homepage</a>
</li>
<li>
<a href="about.html">About Me</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
<li>
<a href="portfolio/index.html">Portfolio</a>
</li>
</ul>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<title>My Website - Contact</title>
</head>
<body>
<h1>Call me maybe?</h1>
<ul>
<li>
<a href="index.html">Homepage</a>
</li>
<li>
<a href="about.html">About Me</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
<li>
<a href="portfolio/index.html">Portfolio</a>
</li>
</ul>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<style>
</style>
<link type="text/css" rel="stylesheet" href="stylesheets/bootstrap.css">
</head>
<body class="container">
<div class="row">
<div class="col-md-12 well">
<h1 id="main-h1">Welcome to my site!</h1>
</div>
</div>
<div class="row">
<div class="col-md-4 well">
<h2>Section 1</h2>
<p>Loren ipsum doler</p>
</div>
<div class="col-md-8 well">
<h2>Section 2</h2>
<p>This is section 2</p>
<div class="row">
<div class="col-md-3">
<h4>A</h4>
</div>
<div class="col-md-3">
<h4>B</h4>
</div>
<div class="col-md-3">
<h4>C</h4>
</div>
<div class="col-md-3">
<h4>D</h4>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h3>Section A</h3>
</div>
<div class="col-md-4">
<h3>Section B</h3>
</div>
<div class="col-md-4">
<h3>Section C</h3>
</div>
</div>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<title>My Website - Portfolio</title>
</head>
<body>
<h1>My Portfolio</h1>
<ul>
<li>
<a href="../index.html">Homepage</a>
</li>
<li>
<a href="../about.html">About Me</a>
</li>
<li>
<a href="../contact.html">Contact</a>
</li>
<li>
<a href="../portfolio/index.html">Portfolio</a>
</li>
</ul>
<h2>My Paintings</h2>
<ol>
<li><a href="paintings/scream.html">Scream</a></li>
<li><a href="paintings/starry_night.html">Starry Night</a></li>
</ol>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<title>My Website - Portfolio - Paintings - Scream</title>
</head>
<body>
<h1>Painting: Scream</h1>
<ul>
<li>
<a href="../index.html">
Back to Portfolio
</a>
</li>
<li>
<a href="../../index.html">
Back to Home
</a>
</li>
</ul>
<img src="../../images/scream.png">
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<title>My Website - Portfolio - Paintings - Starry Night</title>
</head>
<body>
<h1>Painting: Starry Night</h1>
<ul>
<li>
<a href="../index.html">
Back to Portfolio
</a>
</li>
<li>
<a href="../../index.html">
Back to Home
</a>
</li>
</ul>
<img src="../../images/starry_night.jpg">
</body>
</html>
\ No newline at end of file
body {
font-family: 'Arial';
}
h1 {
color: #2e2e2e;
font-size: 24px;
}
#main-h1 {
color: #FF5F5F;
font-size: 48px;
}
ul {
list-style-type: none;
}
#main-menu {
margin-top: 24px;
}
.menu-item {
text-decoration: none;
background-color: #C8C8EC;
display: inline;
padding-top: 20px;
padding-left: 10px;
padding-bottom: 20px;
padding-right: 10px;
}
\ No newline at end of file
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment