Thursday, January 26, 2017

Basic HTML Assignment: Mini Website

Hello Students!
Your Basic HTML Assignment is to create a simple 4 page website that is about anything you like, favorite band, food, movie, actor or actress, etc. You will create a menu for navigation on a home page, and 3 other pages. These can be About, Contact and Sites of Interest. You could also have page titles, pictures or examples of your subject matter. Each page should have a menu for navigation plus content such as text or pictures. Each page should have an image or photo and text, links, lists etc. A full page is not necessary, the focus here is creating navigation, links and using color and embedding images.


Subject Matter: You can make your website about anything you like. You can make it about yourself, a favorite band, tv show, movie, food, car, place etc. The idea is to introduce me, the reader, to your interests. If you already have an idea for your site ask me and we can think about how to structure your website.

For help: Google it or ask your neighbor before asking your instructor. Below are notes about the tags we discussed in class as well as extra's. Or check out the barebones HTML guide on the link list on the side of this blog.

REQUIREMENTS:
• You must code this project in HTML from scratch.
• You must insert the proper HTML tags, Use appropriate headings to structure each of  your pages.
• Each page must contain a simple menu at the top for navigation, and a signature at the bottom to end the page such as your name, a quote or something else unique.
• Must have a total of  4 pages, more is allowed for extra credit. Page titles can be "Home, About, Contact, Favorite Websites, etc.."
• Include 1 image or photo on each page.
• Include at least 2 lists (ordered or unordered)
• Include at least 3 links to external websites (for instance the class blog etc...).
• You must include your email address either on your contact page or in your menu.
• Each page must have a background image or color
• Your home page must be titled "index.html" and be organized in a folder with all other html files and images.
• Make sure all pages have the .htm or .html extension and all images or photos are formatted for web correctly (jpg, gif, png) and reside in the same folder as the html files.


HTML NOTES:

Tags are used to format your text, text can be a link, a list, a paragraph, big, small, red, blue etc. In html tags are made like this:
<></>

You must always begin and end your tag, tags effect everything in between them. If you forget to end a tag it will effect everything after it. So to make some text look bold I would write my HTML like this:

Here is some <strong>bold</strong> text

And it would be rendered like this:

Here is some bold text


Remember that your document must be formatted, it has an html tag, plus a head and a body. Most of the content your site goes in the body. It basically looks like this:
<html>
      <head>
      </head>
             <body>
             </body>
</html>

You can also make the title of your document show up in the window. The title tag is:
<title>this is my website isn't it cool</title>

Other tags change the way text looks, like bold or italic. Try some of these others:
<i></i> makes text italic
<tt></tt> makes text teletype
<h1></h1> makes text into a header, 1 is the largest, 6 is the smallest
<hr></hr> puts a horizontal line on your page
<center></center> makes text align center
<blockquote></blockquote> makes the text indented

You can also format large pieces of text like a paragraph with the p tag:
<p></p>

If you want that paragraph oriented, you can add the align command:
align="center"
align="right"
align="left"

So if you want a paragraph that is left oriented, then your tag looks like this:
<p align="left"></p>

To make text into a link you can use the a tag. To link to a local document you can
write your html like this:
<a href="aboutme.html">About Me"</a>

If your link goes to an external site then you must include the entire URL like this:
<a href="http://www.myblogwebsite.com">My Blog"</a>

You can set the color of several different things in HTML. In the <body> tag, the bgcolortextlinkvlink, and alink attributes define the colors for the page background, text, unvisited links, visited links, and active links (i.e. the moment the link is being clicked on).

To change text color for part of a page, use the <font> container tag with a color attribute.

Color attribute values take one of the following forms:
"#RRGGBB", where RRGG, and BB are the red, green, and blue components of the color, in hex, ranging from 00 to FF.

One of sixteen "widely understood color names": aquablackbluefuchsiagraygreenlimemaroonnavyolivepurpleredsilvertealwhite (white), or yellow (yellow)

Hex code color chart from w3schools.com

HTML COLOR AND BACKGROUND TAGS
Adding color to your html files is easy. You can also use images for backgrounds as well.

Adding a background color is easy, add the bgcolor tag to your body tag. Pick a color from the chart above and type in the 6 digit hexadecimal code.
<body bgcolor="669933">

Adding a background image is easy too. Use the background tag to repeat an image across your background.
<body background="yourfilenamehere.jpg">

Check out these tags below to add color to text. Remember just wrap these tags around the text you want to modify.
<font size="3" color="red">This is some text!</font>
<font size="2" color="blue">This is some text!</font>
<font face="verdana" color="green">This is some text!</font>

Embedding images is easy too, but I will let you figure that one out on your own!  ;-)

Check out this website called HTML MADE EASY:


- Mr.Wilson



Ok have fun!

Monday, January 23, 2017

The Internet and Using Search Engines

Todays Agenda:
  • Lecture: The Internet
  • Search Engine Exercise


Search Engine Exercise:
Search engines allow you to search a database of web sites and files. Google and Bing allow you to search a directory of sites that have been registered by the site owners, for example yahoo. a Meta-search engine searchers other search engines, for example ixquick.

A good searching strategy is the key to finding the information you need:

Searching Tips:
  • Become familiar with more than one search engine, understand that different engines compile data differently. For example, google's boolean search technique is based upon popularity, but not always relevance
  • Be as specific as possible in your search terms. Use unique words or phrases
  • Use a niche site for your search, for instance amazon, or wikipedia
  • Use boolean operators in a meaningful manner (and, or, not)
  • Pay attention to publishing dates, file sources. Not everything on the internet is true
  • Don't give up easily, adjust your search terms. Experiment to find your results
  • BE A NINJA. Try using the Advanced Google Search
  • BE A SUPER NINJA. Try writing Advanced Google Search terms as code right in the browser!

Search Engine Ninja Exercise:
Research the questions below using a search engine or engines. Use advanced search techniques or specific sites to discover your answers. Compile the answers to all 10 questions and email them to me at sethwilson@sccs.santacruz.k12.ca.us

1. What does CSS and HTML stand for?
2. Who invented the worlds first Digital Camera?
3. What is the highest recorded temperature for Death Valley?
4. What is the HTML Tag that defines Emphasized Text?
5. How many Gigabytes in a Petabyte?
6. Who sent the worlds first Email?
7. What is the EFF and what do they do?
8. Who is Tycho Brahe and what part of his body was replaced with silver?
9. Who invented the font "Helvetica" and what is the meaning of its name?
10. What do the letters in HTTP and FTP stand for?

Compile your answers and email them to me. Make sure you include your name and title of this exercise in the subject of your email.

Monday, August 1, 2016

Thank you to all my great students from this years ROP Web Design class. There were some very impressive projects this year and I look forward to seeing a few of you in my classes next semester.




This blog will go live again for the spring semester 2018 ROP Web Design class.

- Mr.W

Tuesday, May 17, 2016

Explore Programming Languages with Code Academy

Hello Students,
In this modern tech industry having a well rounded skill set in web design and programming languages is incredibly important to staying in demand. HTML and CSS are just the first components to creating websites that are compelling, interactive and intuitive. In this project you will explore other languages, complete 3 programming goals and complete one entire lesson in the language of your choice.

A gifted mathematician, Ada Lovelace is considered to have written instructions for the first computer program in the mid-1800s
Web Programming Language Exploration Project:
  • Log into Code Academy and find the language skills section
  • Complete the "Introduction to Javascript" and "Choose your own Adventure" modules
  • Complete the "Introducing JQuery" module
  • Complete the "Introduction to PHP" module
  • Complete the "Python Syntax" and "Tip Calculator" modules
  • Complete the "Introduction to Ruby" and "Putting the Form in Formatter" modules
When you have completed these modules, navigate to the GOALS section and complete these 3 modules:
  • Animate Your Name
  • About You
  • Sun, Earth and Code
When you have completed the GOALS modules, you must choose on of the languages and complete its entire module, Javascript, JQuery, PHP, Python or Ruby.


Have fun! All progress should be complete by the 9th!

- Mr.W

Tuesday, May 10, 2016

Web Development Group Project Phase 3

Hello Students,
For our next phase we begin laying out the structure of our websites. Use the flowchart below as a rough guide for the layout and arrangement of our elements. Use place holder information and images for now until we have all the content available.

Flow Chart for Website Development:
- Mr.W

Sunday, May 8, 2016

Web Development Group Project Part 2

Hello Students,
For the 2nd day of our group project, the teams must propose and agree upon a unified platform for the development of our websites. Each team must take a turn proposing a platform or approach and argue why. Teams must vote and choose a platform democratically. Other deliverables are to be achieved today as listed below.



Step 1 - Choose A Platform:
Each team should meet to discuss before proposing their platform of choice.
  • Each team gets a turn proposing a platform for development, platform must be mobile ready, easy to use, stable and appropriate for our small scale web site, boostrap, foundation, w3c.css are to be considered
  • Teams must vote, each team member gets 1 vote, tally votes on whiteboard
  • Upon vote completion, teams focus on next phase
Step 2 - Choose A School:
We will develop sites for Santa Cruz HS, Harbor HS and Soquel HS. Teams may randomly assign schools to teams with numbers in a hat method. Alternatively, teams can nominate themselves for a school with approval from team members

Step 3 - Identify Key Resources:
Team leads should research templates for our sites, team members should identify the information and assets listed below. Focus on meeting deliverables listed:


  • Team Leads:
    • Identify a simple, straightforward and easily modifiable template for site development, propose and explore options
    • Alternatively, explore development of an original layout/design 
    • Decide on a path by end of day

  • Team Members:
    • Identify these resources and assets needed for your school website:
      • School colors in Hexcode
      • School colors in RGB values
      • Find/Download School Logos in high resolution/good quality 


Thursday, May 5, 2016

Web Development Group Project Part 1

Hello Students,
Today you will begin our first team based web development project. Follow the steps below to build your teams and complete all documentation requested. Teams should be assembled, well defined and ready to begin development on Monday morning. Follow the Steps below carefully...


Here is the hierarchy for our groups:

  • Project Manager (your instructor)
    • Team Leads
      • Team Members with defined roles


Web Development Group Project Step 1: Choose Team Leaders

  1. Each student should nominate 3 people to be team leads
  2. Nominations should be based on not just proficiency but leadership and organizational skill
  3. Take nominations by ballot, tally nominations and announce the top 3
Web Development Group Project: Building Teams
  • To determine teams, have each remaining student identify their skill strengths in these following areas on a scale from 1-5:
    • Coding HTML5/CSS
    • Graphics, including Graphic Design
    • Problem Solving, Researching, Testing and Debugging
  • Compare scores and designate groups so each team has an evenly balanced set of skills in those 3 categories, or as close as possible
  • Teams should assemble and choose 1 row in the computer lab to sit together. Please migrate files as needed with USB drives.
Deliverable - Write a Team Bio/Dossier:
Teams should agree on the team titles/names democratically. Follow Roberts Rules of Order to nominate, vote in case of dispute. The format of this dossier can be any type, word document, google doc, pdf file, html page, etc....
  • Each team should write a short dossier with the following details:
    • Team Name (this is a code name for classroom use only)
    • Team Lead
      • Name
      • Codename
      • Age
      • List 3 skills you bring to the group related to web development
      • Define your roll on the team and how you can support in best, in what areas?
      • Describe your ideal donut in 12 words or less
    • Team Members:
      • Name
      • Codename
      • Age
      • List 3 skills you bring to the group related to web development
      • Define your roll on the team and how you can support in best, in what areas?
      • Show an example of 1 dog that looks like a celebrity (no duplicates!)
Dossier's are due on monday,

Have fun!
- Mr.W