|
Special Characters |
|
|
LESSON GOALS • Be able to use basic html tags entities • Memorize Philippians 4:8. |
|
| THE WORD | |
|
|
"Finally, brothers, whatever
is true, whatever is noble, whatever is right, whatever is pure, whatever is
lovely, whatever is admirable -- if anything is excellent or praiseworthy --
think about such things." Philippians 4:8 Continue reviewing this passage. I would like you to have it be a part of your memory and a part of your life. Ask the Lord to show you how to apply this teaching in your life. |
| PRACTICE | |
|
THE Special |
You've had the opportunity to work with
"entities" in the w3schools site. Entities are special
commands that let the browser represent characters. They could be
something as simple as the letters of the alphabet, but usually they are
characters outside of the normal set of ASCII code.
They might be symbols such as ... < ← ♠ ≠ Each of these symbols can be identified by a specific html designation. Some of them (most of them, in fact) can be represented by one of two types of designations. Let's look at the "less than" symbol. I could simply type it on my keyboard as <. Or, I could write in the following html code < which would also produce the less than symbol. Or, I could write in the following html code < which would also produce the less than symbol. The command must begin with an ampersand (&) and end with a semi-colon ( ; ). In between will be either the characters which represent the symbol, or the number (preceded by # ) which represents the symbol. SAMPLE CODE <html> <body> <p> </p> <p> This is a sample of the paragraph symbol using the character code &para;<br>¶ <p> This is a sample of the paragraph symbol using the numeric code &#182;</p>¶ </body> </html>
|
| PROJECT 2.3 | |
|
Project |
SITE SPECIFICATIONS
Part 1: The Math Page Write a section of content containing math problems using at least 10 math symbols . Identify your symbols using numeric codes. Part 2: More Entities Write a section of content incorporating at least 15 entities called by their character code. NOTE: Save these on a single page in a notepad document named "Entities2-3.htm" Submit the document to me in the drop box "2.3 Entities." Requirements: 1. Heading in proper format 2. Code formatted neatly as demonstrated in class 3. Uses comments to identify or explain major sections of the code 4. Meets all site specifications
|
| GRADING SCALE | |
|
Grading |
A = meets all requirements and looks good
B = meets all requirements and has an acceptable look The assignments must meet the requirements to be accepted for grading. |