Welcome to HTML5!
- Intro to the WWW
- Web Primer by W3C Schools
- How Web Pages Work
- Browser market share
- W3C
~ World Wide Web Consortium
- what is it?
- where is it? http://www.w3.org/
- Cool W3C links...
- W3C Schools My fav!
- W3C Schools Tutorials
If you are running Windows, start Notepad. If you are on a Mac, get Brackets.
Document Structure
- HTML5
- DOCTYPES
- DOCTYPES
- Block vs Inline Elements
- block-level
- generates new block (new line) on page
- structural pieces of the page
- can contain block or inline elements
- inline elements
- occur within a line - does not produce a line break
- typically for formatting
- may only contain other inline elements (if at all)
- block-level
- Common HTML Elements
- Paragraph: <p> (block)
- Break: <br /> (block)
- Horizontal Rule: <hr> (block)
- Headings: 1-6 <h1> </h1> (block)
- don't forget align attribute
- Image: <img> (inline)
- Anchor: <a> (inline)
- Link: <a href="http://www.google.com" title="Google">Google</a>
- Bold: was <b>, now <strong> (inline)
- Italics: was <i>, now <em> (inline)
- Font: <font> (inline)
- <font color="red" face="Geneva, Arial" size="2">
- Lists:
- <ul> unordered list; produces bulleted list (block)
- <ol> ordered list; produces numbered list (block)
- <li> list item; to be used nested within <ul> or <ol>
- <dl>, <dt>, <dd> definition list, definition term, definition data
- Less Common Elements
- Inline
- <abbr> abbreviation <abbr title="Maryland">MD</abbr>
- <acronym> acronym <acronym title="World Wide Web"> WWW</acronym>
- <address> address
- <em> italic text
- <strong> bold text
- <big> increase relative text size
- <small> decrease relative text size
- <sub> subscript
- <sup> superscript
- <q> inline quote
- Block
- <hr> horizontal rule <hr align="center" size="4" width="80%" color="gray" noshade="noshade">
- <blockquote> indented block of text
- <div> division <div align="center" id="navbar">
- Key Attributes
- <body text="white" bgcolor="purple" vlink="gray" alink="blue">
- Special Characters
- non-breaking space
- © © copyright
- ™ ™ trade mark
- ® ® registered trade mark
- < < less than
- > > greater than
- £ £ Pound
- ¥ ¥ Yen
- € € Euro
- Inline
- View Source - or "Oops, my code is showing!"
- Uploading your Work to the Web
- Filenames
- don't use special characters or spaces in file names ($,#,@, * )
- use all lowercase for consistency
- use .html extension for consistencey
- NEVER include spaces in file or folder names
- Name your homepage index.html (exactly that and all in lowercase).
- Software Filezilla (instructions for a clean download of FileZilla)
Once you have completed your homepage (or any html page for this class) it's time to upload it (as well as any image files you may want to use). - Filenames
<!DOCTYPE html> <html> <head> <title>Title of page</title> </head> <body> <p>This is my first homepage. </p> <strong>This text is bold</strong> </body> </html> |
How to Create Your Webspace and Upload Your Homepage!
A reminder that everything you need to get up and running is contained in this video...
Creating Your Webspace-20220330_170852-Meeting Recording.mp4
- Step 1: Sign up with InfinityFree for your free web space. https://app.infinityfree.net/register
- Step 2: Complete this form with the URL for your new webspace, so we all have access to your class site (especially me for grading!)
- Step 3: Download and install FileZilla (client version) https://filezilla-project.org/
- Step 4: Create your homepage if you haven't already (you can use Brackets or any other simple text editor). This is covered in the second video and Chpt 4 of our textbook.
- Step 5: Use Filezilla to connect to your server space and upload your homepage. Here's what FileZilla does.
- Step 6: Go to the Class List and check your site to make sure everything is displaying correctly!
Troubleshooting Image Links
Q. Help! My web page is all a link! I only wanted a short text linkA. You're missing the closing tag for your link, the </A> tag. Place the tag wherever you wish the link text to end.
Q. My image doesn't show up on my web page!
A. Whoo, boy, if Web Diner had a dollar for every time this question was asked! Anyway, check the following:
- Hit the "Reload" or "Refresh" button on your browser. Sometimes it's a simple server glitch that prevents the graphic from loading.
- Has your graphic been uploaded?
- Check that the name of your graphic matches exactly, case (upper case, lower case) the IMG SRC tag in your HTML page. Make sure your graphic file name does not include any spaces or symbols (like & or #)
- Check that your HTML file has all the essential tags in the correct order.
- Still no graphic? Try reuploading your graphic, and make sure that it is being uploaded as binary and not ASCII.
- Make sure your graphic is either in GIF or JPG file format. Although Internet Explorer will display files in BMP format, Netscape will not. BMP files are also much larger than a GIF would be.
- Make certain that you are not missing any quotation marks from your IMG SRC or other HTML tags. A single quote, for example <IMG SRC="notes.gif> can cause a missing image.
- Open the graphic in a paint program like Paint Shop Pro, Photoshop, etc. to make sure that it will open. If the graphic won't open, then the file is corrupted and you need to create a new graphic.
Still Trouble?
- What to do when you know you have uploaded your html page(s) and it's not showing in your browser.
- Two thing you can do...
* Shift/refresh - Hold down the shift button and click the refresh button on your browser.
* "Forcing the issue" - Delete the offending file from the server. Then refresh the page on the server. You should get a file not found error. Then reupload and refresh again and all your updates should show.
- Two thing you can do...
Homework 1 Homepage
- Using Notepad, TextPad, Text Wrangler (Mac) or Brackets, create a homepage for your site and name it index.html. Be sure to use all the structural elements of a basic HTML document and add a good document title. Add some
- headers
- paragraphs
- an image (a picture of yourself would be great if you have one handy),
- a bulleted list
- a numbered list
- an email link
- and one other link.
Upload it to your index page to your web space. Be sure to browse your page using the class list after you upload it to ensure that everything is working properly.