1 / 38

Why HTML

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

Download Presentation

Why HTML

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Why HTML

  2. This is my home page. My name is Ali. I’m studying Technology Education.

  3. 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

  4. HTML • Hyper • Text • Markup • Language

  5. Create HTML Files

  6. Red Font Color This is my home page

  7. <html> <body> <p><font color="#FF0000">This is my home page.</font></p> </body> </html>

  8. Green Font Color This is my home page.

  9. <html> <body> <p><font color="#00FF00">This is my home page.</font></p> </body> </html>

  10. Blue Font Color This is my home page.

  11. <html> <body> <p><font color="#0000FF">This is my home page.</font></p> </body> </html>

  12. Black Font This is my home page.

  13. <html> <body> <p><b>This is my home page.</b></p> </body> </html>

  14. Bold & Blue Font This is my home page.

  15. <html> <body> <p><b><font color="#0000FF">This is my home page.</font></b></p> </body> </html>

  16. Centralize This is my home page.

  17. <html> <body> <p align="center">This is my home page.</p> </body> </html>

  18. Centralize & Underline This is my home page.

  19. <html> <body> <p align="center"><u>This is my home page.</u></p> </body> </html>

  20. Make a Link I'm from CSULB, in Southern California.

  21. <html> <body> <p align="center">I'm from <a href="http://www. csulb.edu">CSULB</a> , In Southern California.</p> </body> </html>

  22. Link to a Picture I'm from CSULB, in Southern California.

  23. <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>

  24. Border for the image I'm from CSULB, in Southern California.

  25. <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>

  26. <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>

  27. Plain Background

  28. <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>

  29. bgproperties="fixed" • http://www.eteamz.com/GODblesstheUSA/

  30. <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

  31. How the color codes work?

  32. 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).

  33. Font Size this is my home page

  34. Font Size <html><body> <p>this is</p> <p><font size="5">my home page</font></p> </body></html>

  35. A Beginner's Guide to HTML http://www.ncsa.uiuc.edu/General/Internet/WWW/HTMLPrimerAll.html http://www.visibone.com/colorlab/

  36. To Publish ftp://username@ftp.csulb.edu • To Visit http://www.csulb.edu/~username

More Related