CGS 2820C Web Page Development |
#05 Grading Criteria for: Internal Stylesheet and Divs Modify the file created in your first assignments, save it as index.htm and upload it to your website. |
|||||||||
---|---|---|---|---|---|---|---|---|---|---|
Description: This is a continuation of your first assignments as you build a 5-page "portfolio" Business or Personal website for yourself. Use Notepad, the free Notepad ++ or the free VS Code to improve and add an internal stylesheet to index.htm, which is the same file used for the first two assignments. All pages should have college level content using realistic text, links, and images that relate to you or your business. Do not use any sample or "lorem" filler text for your submission for a grade. See below for sample code. But make sure you modify the sample code below to your text, your styles, font-sizes and font colors. Make your Your files must be online for full credit. If they are not uploaded to your website, you will lose 40 points. Submit your URL/Web address to the assignment dropbox. There is no longer a need to upload index.htm to the dropbox. Our course is Web Page Development, not Desktop Development. I cannot grade several webpages, multiple images, folders, and your stylesheet each week unless they are properly uploaded and organized online. You can purchase a domain and hosting through BlueHost.com or GoDaddy.com. As of 8/15/2024 Blue Host had a special for Domain and Hosting for a total of $24 for a year. See: BlueHostAd.jpg. Do a search for "Godaddy coupons" or "BlueHost Specials" before you spend your money. Both GoDaddy (480-463-8389) and BlueHost (888-401-4678) offer free phone support. Support is a very important feature! If needed, email me your phone number and two convenient times, and I will choose one to set up an online Teams meeting with you to help upload your website. Make sure to have your password and login ID available. Note: I can assist only after you have purchased your domain and hosting plan. See Styles Tutorial: https://www.bradentonwebsitedesign.com/NotePad_Tutorials/Styles.htm Short Interactive Tutorials:W3Schools Internal Styles: W3Schools IDs Tutorial: W3Schools Classes Tutorial: W3Schools Blocks Tutorial: W3Schools div Tutorial: W3Schools span Tutorial: W3Schools px and em Tutorial: This assignment must be online. See: GoDaddy_FileManager_and_FTP_clients.pdf It is highly suggested that you have a folder called YourDomainName.com in C:\Users\UserName\Documents\My Web Sites folder. Have an images folder in your YourDomainName.com folder. All your files - index.htm, portfolio.htm, resume.htm - will be stored in YourDomainName.com and each image is stored in the images folder. Later, you can drag a copy of this folder from your hard drive to your USB thumb drive as a backup. The <div> tag defines a division or a section in a webpage, such as a wrapper div (to surround the main content so that it can have a
consistent border or size) or a social div for Facebook,
Twitter and YouTube, or a column1 and column2 div... The The <span> tag formats a smaller section of a page. For example: An Internal Stylesheet is used to set desired format properties for existing HTML tags or to define custom selectors. Internal Stylesheets are defined within the Selectors are style names given to elements in a stylesheet. They use this syntax: In the <body> <div id="wrapper"> <header> Masthead content, such as a banner image, logo, or website name goes here... Set image in your stylesheet - background-image:url(images/banner.jpg) </header> <nav> <a href="index.htm">Home</a> | <a href="resume.htm">Resume</a> | <a href="contact.htm">Contact</a> </nav> <main> <h1> Main Heading</h1> Main content goes here, such as paragraphs or images. You could use the <section> instead of <main> </main>
Free Online HTML TutorialsInteractive W3Schools Styles TutorialInteractive W3Schools Classes Tutorial Interactive W3Schools ID Tutorial Notepad Tutorials: Styles Simple Div Page Demo with Wrapper ID Simple HTML5 Element Demo with Nav Win Web Tutor | HTML Tags | Favicon Make sure you MEET ALL GRADING CRITERIA below. |
||||||||||
Topic | Directions | Points | ||||||||
<style> See bottom of this page for code you can copy for a short sample web page. Start an Internal Stylesheet that is placed within the <head> tags, under the <title> tag, and usually follows the <meta> tags. External stylesheets are preferable and may be used instead, but this is only an intro assignment.First, set at least 4 existing Tag Selector properties: such as body, header, h1, h2, p, hr Note1: Content is not placed within the Note2: It does not look professional to center all the content on the page. Note3: You may have multiple styles defined, but you typically only use one
<html>
|
Remove ALL the Inline styles from the previous assignments. That is no more <h2 style="color: blue">. Instead, stet the style for all <h2> tags in the stylesheet. Create a single Internal Stylesheet within the <head> tags and set existing Tag Selector attributes
for at least four (4) different HTML tags. Set the <body>, <h1>, <h2>, <img>,and <p> properties for such attributes as background-color, width and font... Also set the style properties for at least one other HTML tag, such as nav, footer, h2, h3, hr...If your first line of code is <!DOCTYPE html> then setting a body width and a body margin attribute will center your webpage. For example: <style type="text/css"> body {width:1000px; margin:auto; background-color:#FFC;}/* Width/Margin to center page on screen */ h1 {color:blue; font-family:Arial, sans-serif}p {font-size:14px; font-family:Tahoma, Geneva}/* if Tahoma font not found, use Geneva */ img {max-width:100%; height:auto}header {background-color:#369 }nav {text-align:center; padding:12px; background-color:#CCF} /* light grey blue */main {color:#009; background-color:#FFC} /* dark blue on light yellow */footer {color:#FFF; background-color:#369; font-size:10px; height:30px; text-align:center}</style> </head> Set your own attractive colors and fonts and styles. For a live sample showing the html/css structure, see: |
20 pts <...style="...> Set tag attributes No Inline styles Set existing Tag Selector properties for 4 different tags. Just use one internal stylesheet for all internal styles, which means only use the open <style> tag one time. Center the page on the screen, but do NOT center all or even most of the page's content. If you know how - feel free to use an external stylesheet instead of an internal stylesheet. We will cover external stylesheets shortly. |
||||||||
Structure your site and define in your stylesheet and use the following HTML5 elements on your
page: , and consider using <section> and <aside> |
10 pts (p 432-533) |
|||||||||
Continue Internal Stylesheet Define and set properties for at least 2 ID Selectors (#) that are used with
divs,
such as Note: When possible, use the newer HTML5 semantic elements instead
of creating many of your own IDs.
Such as the section, aside, and footer elements: |
Define and set your own custom properties in the Internal Stylesheet for
#wrapper
or #social and at least two other ID Selectors or HTML5 elements. For example: <style type="text/css"> <style type="text/css"> /* Tags and Elements defined below */ ... ... /* IDs are defined below */ #wrapper
{background-color: #FFF; border: 2px #009 solid}
/* dark blue border around page */# social {color:#FF0; background-color:#009} # column1 {background-color:#FFC; width: 60%}
# column2 {background-color:#FCF; width: 30%} |
10 pts
Note: tags like |
||||||||
Continue Internal Stylesheet Define and set properties forat least 2 Class Selectors (#) that are used to define named custom styles, such as .important, .signature, .keyterm, .caption, .box, .line, .chapter...
|
Define and set properties in the Internal Stylesheet for at least
2 custom user-defined Class Selectors, such as .important. For example: <style type="text/css">
|
10 pts (10 pts each) <...class="...> Define and set properties for at least 2 Class Selectors in the stylesheet and use both classes in the body. (p 184) |
||||||||
<div> Used to make settings to a division or section of a web page, such as a wrapper or social or column1 , column2
or ....
(Later your div tags will be used with section IDs defined in your external Cascading Stylesheet.) Also structure your site using the semantic HTML5 elements: <header> <nav> <main> <section> <footer> <div> is for a big section, like a portfolio column or a wrapper<span> is often for a few words, perhaps inside another tag.
|
Use the <div> command to set at least two (2) separate sections of your web page
using each ID defined in the Internal Stylesheet. For example: <div id=" wrapper" >Other divs and semantic elements go inside the wrapper </div> <!-- close wrapper --> <div id=" social ">Facebook | Twitter | YouTube ... </div> <!-- / social --> Add Closing Comments after each closing Div |
10 pts<div>
Required: |
||||||||
Use <span> to mark a small area, and give it a class. Classes are custom attributes defined in stylesheets and begin with a period (.) |
Use all of the user-defined classes in the body of your page. Example: <p class="important"> Read this</p> .or Please <span class="important"> read this</span> memo.Notice the class .important was defined above in the internal stylesheet. |
10 pts<span class="...>Use at least one <span> tag |
||||||||
<!-- comment --> A comment is a remark or note used to document how or when or why something was done within a web page. It is for documentation only, and is ignored by the browser and not displayed on the screen. |
Below is an example of a stylesheet comment that is ignored by the browser and not displayed on the screen:/* 2 lines above: center page on screen */ Below is an example of an HTML comment that is ignored by the browser and not displayed on the screen: </div> <!-- close wrapper --> or </div> <!-- / wrapper --> |
10 pts Use at least 2 stylesheet comment: /* Use at least 3 HTML
comments: <!-- You need a comment for each closing Div. --> |
||||||||
Set your <body> width (perhaps to 1000px or 1200px or 90%) Set the desired <body> background color in your internal stylesheet. Center the page on the screen, but do not center all of the content. See sample code below. |
10 pts |
|||||||||
Make your <nav> look very nice, set the font-size, font-color, and background color to the styles that best match your website theme. Play with the px or em unit. See sample below. |
10 pts |
|||||||||
In the end your pages should be organized like the sample structure and template shown at right. The In the meantime, you can
actually copy the code at right as a template and fill in your real content as you set up
your page. |
Below is only a simple example of an index.htm file. Do your own college level page, with full paragraphs, links, images and styles that are relevant to your site.
<!DOCTYPE html> nav a {font-size: 24px; color:#036;} |
|||||||||
Another way to debug and improve your website is the use the Inspector. The Inspector in Firefox is a very handy tool that allows you to view, modify, and do live tests the CSS styles of a webpage. These live changes to the styles are reflected immediately in the browser. You can edit, add or remove CSS rules and immediately see the results. It is great for debugging layout or design issues on the spot. 1 Right-click in FireFox, or Edge, or Chrome See sample below. |
||||||||||
<link href="images/favicon.ico" A favicon is used to place your favorite icon in the URL/Address box next to your URL/Address. Make sure your icon has a .ico extension and if you right-click > "Open with" it can open in your browser. Notice this page has an icon of a spider web in the left corner of the URL/Address box and on its tab in most browsers. You can see a favicon by typing: http://yourdomain/images/favicon.ico See Photo to create: |
Create your own icon. You can use certain art programs to custom
create one (like PhotoFiltre: Tools > Export as icon) or download an icon maker to create your
favorite icon. It must be named favicon.ico. Most hosts store
the favicon in the images folder. (Some sites store it in the
root folder, for instance the Web hosting company, GoDaddy, puts a default favicon.ico in the root folder.) See: http://www.xiconeditor.com/ Code for CGS2820 Syllabus favicon (in <head> tag):<link href="images/favicon.ico" rel="shortcut icon"
type="image/vnd.microsoft.icon"> Code for Google favicon
(in <head> tag):<link rel="shortcut icon" href="
http://www.google.com/favicon.ico"
type="image/x-icon"> See Notepad Tutorial: Favicon |
Extra fun: Favicon 1. open image 2. crop image 3. size as square 4. edit image 5. resize to 32x32 6. in PhotoFiltre: Tools > Export as icon See Photo: images/PhotoFiltre-favicon.jpg |
||||||||
Make this version of index.htm look attractive with real content. This will be your real site in a short while. | Add real and relative content, color, images and styles. Make it look like a college student is working on this project. | (10) | ||||||||
Preview your page in the FireFox browser, then right click and choose View Source, and look for any errors displayed in red. Hover over flagged errors for hints. -10 points for each error that FireFox displays in red.
Note: the html line in red may be OK, but it may be flagged due to an error above it - just as pollution can travel downstream. When I find an error, I must copy it and then paste each error into the dropbox. So it takes me less time and makes me happier when you look for and correct your errors first. VS Code is free. It is color coded. It spellchecks for you and underlines flagged words in blue. |
-10 points for each HTML error
-5 points for each spelling mistake |
|||||||||
Deprecated (outdated and replaced) tags will not be accepted in this course. ALL tags should be in lower case. |
Do NOT use deprecated or obsolete Use instead: <p style="text-align:center; font-family:arial; background-color:#FF0"> Almost all styles should really be defined in the stylesheet. |
-5 for each use ALL tags should be in lower case. |
||||||||
Note: A wise person will keep multiple backups of their files. Ctrl + C (copy) and Ctrl + V (paste) is very easy. You can back up your individual files that way, or even an entire folder. |
||||||||||
1. Use a File Manager or FTP
to transfer your
index.htm file and other .htm files to the
public_html folder of your online website.
Create an online images folder and upload
your images to the images folder. There are TWO GoDaddy usernames and PASSWORDS. One is for your GoDaddy account. The other set of credentials is for the cPanel for the GoDaddy File Manager or if you use another app like FileZilla. |
FileZilla, is a great drag and drop application to FTP (File Transfer Protocol) to upload files to the remote server or host.
This free popular program will remember your UserName, Password and the local and remote folder locations. |
This project will not be graded if it is not live,
Online and, uploaded to your own website.
See http v https You will lose 3 points for each day late. Consider testing it on your cell phone. |
||||||||
Test your site on multiple browsers: such as Edge, FireFox, Chrome, Safari and your cell phone. Preview your page in the FireFox browser, then right click and choose View Source, and look for any errors displayed in red. Hover over flagged errors for hints. -10 points for each error that FireFox displays in red. Note: the html line in red may be OK, but it may be flagged due to an error above it - just as pollution can travel downstream. When I find an error, I must copy it and then paste each error into the dropbox. So it takes me less time and makes me happier when you look for and correct your errors first and you get the highest possible grade. Make sure your finished resume is attractive and complete, fills a full page and will reflect well on your abilities. |
||||||||||
|