380 likes | 496 Views
Why HTML. This is my home page. My name is Ali . I’m studying Technology Education. Validity and reliability of “Cognitive Styles Analysis” Ali Reza Rezaei Minnesota State University, Mankato Larry Katz University of Calgary, Canada Abstract
E N D
This is my home page. My name is Ali. I’m studying Technology Education.
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
<html> <body> <p><font color="#FF0000">This is my home page.</font></p> </body> </html>
Green Font Color This is my home page.
<html> <body> <p><font color="#00FF00">This is my home page.</font></p> </body> </html>
Blue Font Color This is my home page.
<html> <body> <p><font color="#0000FF">This is my home page.</font></p> </body> </html>
Black 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.
<html> <body> <p><b><font color="#0000FF">This is my home page.</font></b></p> </body> </html>
Centralize This is my home page.
<html> <body> <p align="center">This is my home page.</p> </body> </html>
Centralize & Underline This is my home page.
<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.
<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.
<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>
<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>
<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.eteamz.com/GODblesstheUSA/
<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. http://bgsound.com
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.ncsa.uiuc.edu/General/Internet/WWW/HTMLPrimerAll.html http://www.visibone.com/colorlab/
To Publish ftp://username@ftp.csulb.edu • To Visit http://www.csulb.edu/~username