Skip to content
Open
Show file tree
Hide file tree
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
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
template
========

Template repo for WRA 110
This is a template for you to use to get your portfolio started in the course.

There are 3 files to begin this portfolio:
1. An HTML file (index.html), which serves as the homepage for the portfolio.
2. Another HTML file (lived.html), which is linked to the homepage.
3. A CSS file to jazz up the design a bit (No one actually like Times New Roman do they?!!!)
31 changes: 31 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!DOCTYPE HTML>
<head>
<meta name="description" content="Basic Portfolio">
<meta name="author" content="name goes here">
<meta charset="UTF-8">
<link type="text/css" rel="stylesheet" href="style.css">
<title>my portfolio</title>
</head>
<body>
<content>
<header>
<h1>my portfolio</h1>
<ul id="nav">
<li><a href="index.html">home</a></li>
<li><a href="lived.html">lived <br />experiences</a></li>
<li><a href="#">cultural <br />analysis</a></li>
<li><a href="#">formal <br />research</a></li>
<li><a href="#">remix</a></li>
<li><a href="#">course <br />retrospective</a></li>
<li><a href="#">blog</a></li>
</ul>
</header>
<main>
<h1>about me</h1>
<p>Guanyu Lu</p>
</main>
<footer>
<p>&copy; 2013 [Name goes here]</p>
</footer>
</content>
</body>
29 changes: 29 additions & 0 deletions lived.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE HTML>
<head>
<meta name="description" content="Basic Portfolio">
<meta name="author" content="name goes here">
<meta charset="UTF-8">
<title>lived experiences project | my portfolio</title>
<link type="text/css" rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>my portfolio</h1>
<ul id="nav">
<li><a href="index.html">home</a></li>
<li><a href="lived.html">lived <br />experiences</a></li>
<li><a href="#">cultural <br />analysis</a></li>
<li><a href="#">formal <br />research</a></li>
<li><a href="#">remix</a></li>
<li><a href="#">course <br />retrospective</a></li>
<li><a href="blog.html">blog</a></li>
</ul>
</header>
<main>
<h1>lived experiences project title</h1>
<p>content goes here</p>
<p>paragraph 2</p>
</main>
<footer>
<p>&copy; 2013 [Name goes here]</p>
</footer>
49 changes: 49 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
body {
color:#fff;
background:#333;
font-family:Courier;
width:960px;
margin:auto;
}


header, main, footer {
clear:both;
margin-left:0;

}

header, main h1 {
color:#00ff00;
}

a, a:visited {
color:#c0c0c0;
text-decoration:none;
}

a:hover {
color: #77ccee;
text-decoration: none;
}

#nav {
list-style: none;
width:960px;
margin-left:-40px;

}

#nav li {
display:block;
float: left;
padding:5px;
margin-bottom:20px;
margin-right:10px;
height:30px;
width:110px;
text-align:center;
font-size:13px;
border: 2px solid white;
border-radius:10px;
}