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

Post on 28-Dec-2015

215 Views

Category:

Documents

0 Downloads

Preview:

Click to see full reader

TRANSCRIPT

MAKING A WEBSITEWRA 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

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.

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>

 

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.

top related