*Not due till next Topic
There is no true assignment for this Topic. Rather, it’s our hope that you take this time to explore CSS on your own, and play around. You should begin thinking about the contents of your site, but no real structue will be required until HW-05: Typography.
You are required to create a detailed readme for this Project however, containing ideas and a color palette. You should take this time to begin that process, and start getting your Project 3 set up:
Begin your Project 3 by creating your README.md, pages, and CSS file:
/project-3
as readme.md/project-3
as index.html.project-3/css
as style.css
By now you should be familiar with the basic structure of HTML pages, including their !DOCTYPE
and <head>
elements. It’s always good practice to get this section laid out early. Skim “Reviewing the Head” again if you need a refresher.
Project 2 and The Instructable got you comfortable with stuctural and semantic HTML. Project 3 and the Literature Showcase will emphasize CSS, specifically color, typography, and layout.
This project will need images, fonts, and written content, so you may need to do a little research/prep:
index.html
Play and experiment with linking your index and stylesheet! Try adding a heading and some paragraphs to your index - maybe even some classes - and referencing them in your CSS. This is your time to mess around!
This page will need a relative link to your stylesheet.
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="./css/style.css">
<title>Your Site's Title</title>
</head>
<body>
<!-- Page Content -->
</body>
</html>
README.md
All design goes through an ideation phase, where you brainstorm ideas and possibilities. For our last Project we’ll look at the process of wireframing (blueprinting) for the web, but for Project 3, we just want you to share your ideas in text and images.
Start your README by laying out your ideas:
Here is my example:
README.md
, sharing what your plans are for this project.