Plan & Design – Timeline & Costs

Continue developing your func spec –  now you are on to Step 2 in the list below. Here are the steps we are going to follow: Features: describes the overall project and it’s functionality Design/Technical Specification: lays out some of the technical design pieces such as database design. Timeline: create an overall schedule for your…

Read More

Plan & Design – Tech Specs

Continue developing your func spec –  now you are on to Step 2 in the list below. Here are the steps we are going to follow: Features: describes the overall project and it’s functionality Design/Technical Specification: lays out some of the technical design pieces such as database design. Timeline: create an overall schedule for your…

Read More

3 Column Float Layout

Here’s the HTML for a basic page with a header, a left column, a right column, a center content space and a footer. Comments are in gray. <html> <body> <!–Header image -> <img id=”header” src=”images/WebsiteHeader.png”> <!– div for first column–> <div class=“cols”> <h2>Column 1</h2> <p> Text for column 1</p> </div> <!–div for the second column…

Read More

2 Column Float Layout

If we wanted to make a web page that had: Header across the top 2 equal columns of content Footer across bottom. How? Create the header Create the two columns of text…float one..left and one…right! Then for the footer….Clear the floats! Here’s the HTML for a basic page with a header, a left column, a…

Read More

Example with Semantic Elements

Finally, let’s see a real example.  If you put together this HTML… <!DOCTYPE html> <html> <head>   <link rel=”stylesheet” href=”css/five.css”></link> </head> <body> <header>Steve Jobs Lives</header>   <nav> <a href=”five”>Home</a><a href=”#”>About Us</a><a href=”#”>Contact</a></nav>   <main>    <section>Because…really he just can’t be gone. Who is going to invent the great next invention? While Apple is still producing…

Read More

Possible Layouts

Or, how would you use these to create a standard web page.  Here is one example using some of these standard elements:   This example adds in multiple elements like headers and sections to demonstrate a more complex structure:

Read More

Semantic Element List

Here are the main semantic elements: Element Description <article> for complete or self-contained items like a blog post, newspaper article or forum post

Read More

Using Strings in PHP

Before we get into some more advanced String functions – let’s take a more in depth look at how to mix HTML & PHP as well as reviewing how the echo statement works. Inserting Line Breaks There are several ways to insert HTML into PHP code.  We are going to use doing line breaks as…

Read More

Add Data to Tables with phpMyAdmin

Creating a table is the first step, now it needs some data.  There are many different ways on how to go about getting data in this table. You can import data from another source such as another database table, an Excel spreadsheet or text listing. You can integrate it with a website via a form…

Read More

Homework: Numbers

Create a file called numbers.html for Part 1.   Here’s a formula you will need to figure out the area of a trapezoid.

Read More