html basics exercises. create a webpage that prints your name to the screen. kurd

23
HTML basics exercises

Upload: elinor-reynolds

Post on 27-Dec-2015

4.065 views

Category:

Documents


136 download

TRANSCRIPT

Page 1: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

HTML basics exercises

Page 2: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

Create a webpage that prints your name to the screen.

<html><body><!-- print name to the screen -->Kurd</body></html>

Page 3: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

Create a webpage that prints the numbers 1 - 10 to the screen

<html><body><!-- print the numbers 1 to 10 to the screen -->1 2 3 4 5 6 7 8 9 10</body></html>

Page 4: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

Create a webpage and set its title to "This is a webpage".

<html> <head> <!--set the title of the page--> <title>This is a webpage</title> </head> <body> <p class="note"> The title tag goes in the head section of an HTML

document. </p> </body></html>

Page 5: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

• Create a webpage that prints the message "When was this webpage created? Check page's title for the answer." to the screen, and set the title of the page to the current date

Page 6: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

<html><head><!--set the title of the page to the current date--><title>January 9th, 2009</title></head><body><!--print a message-->When was this webpage created?Check page's title for the answer.</body></html>

Page 7: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

Create a webpage that prints any text of your choosing to the screen, do not include a head section in the code

<html><!--there is no head section in this HTML code--><body><!--print a message-->The giraffe is a very interesting animal.</body></html>

Page 8: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

Repeat exercise #5, but this time include a head section in the code.

<html><head><title>Print some text</title></head>

<body><!--print a message-->The giraffe is a very interesting animal.</body></html>

Page 9: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

Print your name in green.

• <html>• <body>• <font color="green">kamaran</font>• </body></html>

Page 10: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

Print the numbers 1 - 10, each number being a different color• <html>

• <body>• <font color="green">1</font>• <font color="blue">2</font>• <font color="gray">3</font>• <font color="#008080">4</font>• <font color="#0008B">5</font>• <font color="brown">6</font>• <font color="#dcdcdc">7</font>• <font color="#800000">8</font>• <font color="purple">9</font>• <font color="#688e23">10</font>• </body></html>

Page 11: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

Print your name in a Tahoma font

<html><body><font face="Tahoma">Kurdistan</font></body></html>

Page 12: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

Print your name to the screen with every letter being a different heading size.

• <html>• <body>• <h4>k</h4>• <h3>u</h3>• <h2>r</h2>• <h1>d</h1>• </body>• </html>•

Page 13: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

Print the squares of the numbers 1 - 20. Each number should be on a separate line, next to it the number 2 superscripted, an equal sign and

the result

<html> <body> 1<sup>2</sup> = 1 <br /> 2<sup>2</sup> = 4 <br /> 3<sup>2</sup> = 9 <br /> </body> </html>

Page 14: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

Test Page:

Your <BODY> tag:

<BODY BGCOLOR="#ffffff" BACKGROUND="" TEXT="#000000" LINK="#0000ff" VLINK="#663399" ALINK="#ff0000">

Add font size & face attributes and bold & italic tags to your documents as needed. Also be sure to move your background image.

Page 15: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

• TEXT which sets the color of text on the web page

• LINK which sets the color of links you haven't followed

• VLINK which sets the color of links you have followed

• ALINK which sets the color of links as you click on them

Page 16: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd
Page 17: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd
Page 18: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

• <ul><li>Coffee</li><li>Milk</li></ul>

• <ol><li>Coffee</li><li>Milk</li></ol>

• <dl> definition list<dt>Coffee</dt><dd>- black hot drink</dd><dt>Milk</dt><dd>- white cold drink</dd></dl>

Page 19: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

HTML TableHow to add a table to your page

Do you really want to create a table? Well, let's start with tables by looking at thetable tag: <table>

......contents of table....... </table>

Page 20: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

• HTML Tables• Tables are defined with the <table> tag.• A table is divided into rows (with the <tr> tag),

and each row is divided into data cells (with the <td> tag).

• td stands for "table data," and holds the content of a data cell. A <td> tag can contain text, links, images, lists, forms, other tables, etc.

Page 21: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

Table Example• <table border="1">

<tr><td>row 1, cell 1</td><td>row 1, cell 2</td></tr><tr><td>row 2, cell 1</td><td>row 2, cell 2</td></tr></table>

Page 22: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

HTML Tables and the Border Attribute

If you do not specify a border attribute, the table will be displayed without borders. Sometimes this can be useful, but most of the time, we want the borders to show.

To display a table with borders, specify the border attribute:

<table border="1"><tr><td>Row 1, cell 1</td><td>Row 1, cell 2</td></tr></table>

Page 23: HTML basics exercises. Create a webpage that prints your name to the screen. Kurd

HTML Table Headers• Header information in a table are defined with the <th> tag.• The text in a th element will be bold and centered.

<table border="1"><tr><th>Header 1</th><th>Header 2</th></tr><tr><td>row 1, cell 1</td><td>row 1, cell 2</td></tr><tr><td>row 2, cell 1</td><td>row 2, cell 2</td></tr></table>