Internet and Web Technologies Lab Assignment 1
Internet and Web Technologies Lab Assignment 1
Parshva A Maniar
20BDS0058
</body>
</html>
Output:
Q2.
Ans 2.
Code:
<html>
<head>
</head>
<body>
<table border="1">
<tr>
<th>Header column 1</th>
<th>Header column 2</th>
<th>Header column 3</th>
<th>Header column 4</th>
</tr>
<tr>
<td>Row 2 - item 1</td>
<td>Row 2 - item 2</td>
<td rowspan="2">
Row 2: Nested table 1
<br />
<br />
<table>
<tr>
<th>Row Header 1</th>
<th>item</th>
</tr>
<tr>
<th>Row Header 1</th>
<th>item</th>
</tr>
<tr>
<th>Row Header 1</th>
<th>item</th>
</tr>
</table>
</td>
<td>
Row 2 - item 4 <br />
A second line
</td>
</tr>
<tr>
<td>
Row 3: Nested table 2
<br />
<br />
<table>
<tr>
<th>Row Header 1</th>
<th>item</th>
</tr>
<tr>
<th>Row Header 1</th>
<th>item</th>
</tr>
<tr>
<th>Row Header 1</th>
<th>item</th>
</tr>
</table>
</td>
<td>
<ul>
<li>VB.Net</li>
<li>CSharp</li>
<li>Asp.Net</li>
</ul>
</td>
<td rowspan="2"><img class="C" src="C:\Users\Parshva
Maniar\Desktop\Vp9WvV7YKdH4k8sKRePcE8-320-80.jpg" alt="" /></td>
</tr>
<tr>
<td>Row 4 - item 1</td>
<td>Row 4 - item 2</td>
<td>Row 4 - item 3</td>
</tr>
<tr>
<td colspan="4">Row 5 - Last row of outer table</td>
</tr>
</table>
<br />
<br />
</body>
</html>
Output:
Q3.
Ans 3.
Code:
<html>
<head>
<title>Personal Information</title>
</head>
<body>
<form action="" style="background-color: blue;">
<fieldset>
<legend>Personal Information</legend>
First Name<input name="name" type="text" size="20"><br>
Last Name<input name="name" type="text" size="30"><br>
</fieldset>
<fieldset>
<legend>Course Information</legend><br>
Course:<br>
Web Design <input type="radio" name="Course" value="WebDesign"><br>
SQL<input type="radio" name="Course" value="SQL"><br>
Programming<input type="radio" name="Course" value="Programming"><br>
<legend> Goal:</legend><br>
<select name="Goal">
<option selected>Programmer
<option >Gamer
<option> Businessman
</select>
<br>
Skills(Check All That Apply): <br>
UNIX<input type="checkbox" name="UNIX" value="Skills"> VIM <input
type="checkbox" name="VIM" value="Skills"><br>
HTML<input type="checkbox" name="HTML" value="Skills"> CSS<input
type="checkbox" name="CSS" value="Skills"><br>
Python<input type="checkbox" name="Python" value="Skills">
Javascript<input type="checkbox" name="Javascript" value="Skill"><br>
</body>
</html>
Output: