7
INTERNET PROGRAMMING NAME:JEVANRAJ A/L RAMAKRESHNAN (B09001376) TITLE:LAB REPORT 1 LECTURE:MADAM LIZA DATE:16/11/2015

Internet Programming

Embed Size (px)

DESCRIPTION

assignment

Citation preview

Page 1: Internet Programming

INTERNET PROGRAMMING

NAME:JEVANRAJ A/L RAMAKRESHNAN (B09001376)

TITLE:LAB REPORT 1

LECTURE:MADAM LIZA

DATE:16/11/2015

Page 2: Internet Programming

LAB 1

<!DOCTYPE html><html><head><title>Myself</title></head><body>

<h1>My Name Jevanraj A/L Ramakreshnan</h1><h2>My Name Jevanraj A/L Ramakreshnan</h2><h3>My Name Jevanraj A/L Ramakreshnan</h3><h4>My Name Jevanraj A/L Ramakreshnan</h4><h5>My Name Jevanraj A/L Ramakreshnan</h5><h6>My Name Jevanraj A/L Ramakreshnan</h6><p>This is a paragraph.</p>

</body></html>

LAB 2

<!DOCTYPE html><html><head><title>Myself</title></head><body>

<h1>My Name Jevanraj A/L Ramakreshnan</h1><h2>My Name Jevanraj A/L Ramakreshnan</h2><h3>My Name Jevanraj A/L Ramakreshnan</h3><h4>My Name Jevanraj A/L Ramakreshnan</h4><h5>My Name Jevanraj A/L Ramakreshnan</h5>

Page 3: Internet Programming

<h6>My Name Jevanraj A/L Ramakreshnan</h6><p>This is a paragraph.</p><a href="http://www.youtube.com">Click Here To Next Page</a>

</body></html>

LAB 3

<!DOCTYPE html><html><head><title>Tutorial 1</title></head><body style="background-color:Green"><a name="top"></a><h1 style="text-align:right">Right Heading</h1><h1 style="color:blue"><centre>This Is Heading</centre></h1><h1 style="font-family:chiller">This Is Heading</h1><p style="color:red">This Is Paragraph.</p><p>This text is normal.</p><p><b>This text is bold.</b></p><p><strong>This text is strong</strong>.</p><p><i>This text is italic</i>.</p><p><em>This text is emphasis.</em></p><h2>HTML <small>small</small>Formatting</h2><h2>HTML <mark>marked</mark>Formatting</h2><p>My favourite color is <del>blue</del>red</p><p>This is <sub>Subscripted</sub> text.</p><p>This is <sup>Supscripted</sup> text.</p><p>This link will go to another web page within the same website.<a href="image exercise.html">Click Here:</a><p><a href="#top"><font size="-1">To Top</font></a></p></body>

</html>

Page 4: Internet Programming

LAB 4<!DOCTYPE html><html><body>

<table style="width:100%"> <tr> <td>Jill</td> <td>Smith</td> <td>50</td> </tr> <tr>

Page 5: Internet Programming

<td>Eve</td> <td>Jackson</td> <td>94</td> </tr> <tr> <td>John</td> <td>Doe</td> <td>80</td> </tr></table><br/><br/><!--Tables are devided into tables rows with the <tr> tag.Table rows are devided into table data with the <td> tag.A table row can also be divided into table headings with the <th> tag.-->

<table border="2" style="width:100%"><tr><td>jill</td><td>Smith</td> <td>50</td> </tr> <tr> <td>Eve</td> <td>Jackson</td> <td>94</td> </tr> <tr> <td>John</td> <td>Doe</td> <td>80</td> </tr></table></body></html>

Page 6: Internet Programming

LAB 5