making a website wra 210 11.18.13. agenda go over some website basics and reminders issues or...

6
MAKING A WEBSITE WRA 210 11.18.13

Upload: roderick-harmon

Post on 28-Dec-2015

215 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: MAKING A WEBSITE WRA 210 11.18.13. AGENDA Go over some website basics and reminders Issues or problems? Continue to SCRUM Work

MAKING A WEBSITEWRA 210

11.18.13

Page 2: MAKING A WEBSITE WRA 210 11.18.13. AGENDA Go over some website basics and reminders Issues or problems? Continue to SCRUM Work

AGENDA • Go over some website basics and reminders• Issues or problems?• Continue to SCRUM• Work

Page 3: MAKING A WEBSITE WRA 210 11.18.13. AGENDA Go over some website basics and reminders Issues or problems? Continue to SCRUM Work

WHAT WE HAVE

At this point we should have the following:

• Our landing page (HTML document)• Our CSS (CSS document)

Hopefully we have some of the following:

• Other HTML pages• Website copy and content

What we need

• A fully functional website with real copy and at least one portfolio item

Page 4: MAKING A WEBSITE WRA 210 11.18.13. AGENDA Go over some website basics and reminders Issues or problems? Continue to SCRUM Work

WEBSITE ORGANIZATION

Local vs. Online

Make a folder (if you don’t have it already), call it “portfolio”.

Put your index.html (it should be called this), in that folder.

Make another folder called “images.”

Make sure that you are using external CSS.

Page 5: MAKING A WEBSITE WRA 210 11.18.13. AGENDA Go over some website basics and reminders Issues or problems? Continue to SCRUM Work

LINKING PAGESLinking to other existing pages is simple, it is just like other links we make.

<ul>

<li><a href="portfolio.html" title="portfolio">portfolio </a></li>

<li><a href="resume.html" title="resume"> resume</a></li>

<li><a href="blog.html" title="blog">blog </a></li>

<li><a href="personal.html" title="personal"> personal</a></li>

<li><a href="contact.html" title="contact"> contact</a></li>

</ul>

 

Page 6: MAKING A WEBSITE WRA 210 11.18.13. AGENDA Go over some website basics and reminders Issues or problems? Continue to SCRUM Work

LET’S DO IT!

I want to make a copies of your landing page and rename them to fit your site.

After I want you to make sure all your HTML files in your portfolio folder.

After I want you to change your list items to hyperlinks (if you haven’t). Make sure that all your links work locally.

Alright…let’s troubleshoot.