460 likes | 471 Views
Learn how to create and customize web pages using HTML. Includes step-by-step instructions on changing fonts, colors, centralizing text, adding links and images, and more.
E N D
http://www.csulb.edu/ • View Code
Save as Text This is my home page. My name is Ali. I’m studying Educational Technology.
Validity and reliability of “Cognitive Styles Analysis” Ali Reza Rezaei Minnesota State University, Mankato Larry Katz University of Calgary, Canada Abstract To make the instruction more effective, there must be a match between the characteristics of the learner and the content, the method, and the media of the instruction. According to many research studies one of the most critical factors in this regard is the cognitive style of the learners. On the other hand, an important advantage of computer based instruction is the opportunity to deliver the instruction based on students' cognitive style. This customized instruction is possible today, because the cognitive style analysis could be easily be done on
HTML Hyper Text Markup Language
Red Font Color This is my home page
Type <html> <body> <p><font color="#FF0000">This is my home page.</font></p> </body> </html>
Green Font Color This is my home page.
Green Font Color <html> <body> <p><font color="#00FF00">This is my home page.</font></p> </body> </html>
Blue Font Color This is my home page.
Green Font Color <html> <body> <p><font color="#0000FF">This is my home page.</font></p> </body> </html>
Black & Bold Font This is my home page.
<html> <body> <p><b>This is my home page.</b></p> </body> </html>
Bold & Blue Font This is my home page.
Bold & Blue Font <html> <body> <p><b><font color="#0000FF">This is my home page.</font></b></p> </body> </html>
Centralize This is my home page.
Centralize <html> <body> <p align="center">This is my home page.</p> </body> </html>
Centralize & Underline This is my home page.
Centralize & Underline <html> <body> <p align="center"><u>This is my home page.</u></p> </body> </html>
Make a Link I'm from CSULB, in Southern California.
Make a Link <html> <body> <p align="center">I'm from <a href="http://www. csulb.edu">CSULB</a> , In Southern California.</p> </body> </html>
Link to a Picture I'm from CSULB, in Southern California.
<html> <body> <p align="center">I'm from <a href="http://www. Csulb.edu">CSULB</a> , In Southern California.</p> <p align="center"> <img border="0"src="file:///C:/homepic.jpg" width="174" height="265"></p> </body> </html>
Border for the image I'm from CSULB, in Southern California.
Border for the image <html> <body> <p align="center">I'm from <a href="http://www. Csulb.edu">CSULB</a> , In Southern California.</p> <p align="center"><img border="4" src="file:///C:/WINNT/Profiles/reza/Desktop/homepic.jpg" width="174" height="265"></p> </body> </html>
Background image <html> <head> <title></title> </head> <body background="file:///C:/homepic.jpg"> <p align="center">I'm from <a href="http://www. Csulb.edu">CSULB</a> , In Southern California.</p> </body> </html>
Plain Background <html> <head> <title></title> </head> <body bgcolor="#C0C0C0"> <p align="center">I'm from <a href="http://www. Csulb.edu">CSULB</a> , In Southern California.</p> </html>
bgproperties="fixed" • http://www.web-wise-wizard.com/css-style-sheets/web-page-fixed-background.html
<bgsound src="sound.wav" loop=“2"> • This will repeat the sound just twice. You can change it to any number. If you change it to a negative number it will loop forever.
The six-digit number and letter combinations represent colors by giving their RGB (red, green, blue) value. The six digits are actually three two-digit numbers in sequence, representing the amount of red, green, or blue as a hexadecimal value in the range 00-FF. For example, 000000 is black (no color at all), FF0000 is bright red, 0000FF is bright blue, and FFFFFF is white (fully saturated with all three colors).
Font Size this is my home page
Font Size <html><body> <p>this is</p> <p><font size="5">my home page</font></p> </body></html>
A Beginner's Guide to HTML http://www.w3schools.com/html/default.asp http://www.htmlgoodies.com/primers/html http://www.htmlcodetutorial.com http://www.visibone.com/colorlab
To Publish ftp.csulb.edu • To Visit http://www.csulb.edu/~username
(Word-DreamWeaver - Wix, Weebly, Google sites)0 • WordPress • http://www.youtube.com/watch?v=8Jv47_VIBOQ