38
Why HTML

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

Embed Size (px)

Citation preview

Page 1: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

Why HTML

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

This is my home page.

My name is Ali.I’m studying Technology Education.

Page 3: 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 RezaeiMinnesota State University, Mankato

Larry KatzUniversity 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

Page 4: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education
Page 5: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

HTML

• Hyper

• Text

• Markup

• Language

Page 6: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

Create HTML Files

Page 7: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

This is my home page

Red Font Color

Page 8: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

<html>

<body>

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

</body></html>

Page 9: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

This is my home page.

Green Font Color

Page 10: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

<html>

<body>

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

</body>

</html>

Page 11: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

This is my home page.

Blue Font Color

Page 12: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

<html>

<body>

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

</body>

</html>

Page 13: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

This is my home page.

Black Font

Page 14: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

<html>

<body>

<p><b>This is my home page.</b></p>

</body>

</html>

Page 15: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

This is my home page.

Bold & Blue Font

Page 16: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

<html>

<body>

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

</body>

</html>

Page 17: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

This is my home page.

Centralize

Page 18: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

<html>

<body>

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

</body>

</html>

Page 19: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

This is my home page.

Centralize & Underline

Page 20: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

<html>

<body>

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

</body>

</html>

Page 21: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

I'm from CSULB, in Southern California.

Make a Link

Page 22: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

<html>

<body>

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

</body>

</html>

Page 23: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

I'm from CSULB, in Southern California.

Link to a Picture

Page 24: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

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

Page 25: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

I'm from CSULB, in Southern California.

Border for the image

Page 26: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

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

Page 27: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education
Page 28: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

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

Page 29: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

Plain Background

Page 30: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

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

Page 31: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

bgproperties="fixed"

• http://www.eteamz.com/GODblesstheUSA/

Page 32: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

<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

Page 33: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

How the color codes work?

Page 34: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

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

Page 35: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

this is

my home page

Font Size

Page 36: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

<html><body>

<p>this is</p>

<p><font size="5">my home page</font></p>

</body></html>

Font Size

Page 37: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

http://www.ncsa.uiuc.edu/General/Internet/WWW/HTMLPrimerAll.html

A Beginner's Guide to HTML

http://www.visibone.com/colorlab/

Page 38: Why HTML. This is my home page. My name is Ali. I’m studying Technology Education

• To Publish

ftp://[email protected]

• To Visit

http://www.csulb.edu/~username