Interview Questions → HTML → HTML Questionnaire I
HTML Questionnaire I
<a href="url">Link Text</a>
<html>
<head>
<title>Set your title here</title>
</head>
<body>
</body>
</html>
<html>
<head>
<title>Set your title here</title>
</head>
<body>
<a href = "http://gyansangrah.com" target="_blank"> Go to Gyansangrah</a>
</body>
</html>
<html>
<head>
<title>Set your title here</title>
</head>
<body>
This is line 1
<br/>
This is line 2
</body>
</html>
<html>
<head>
<title>Set your title here</title>
</head>
<body>
<ul>
<li>Coffee</li>
<li>Tea</li>
</ul>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<table>
<tr>
<td>First cell in first table. The cell to the right has the second table in it.</td>
<td>
<table>
<tr><td>nested table</td></tr>
<tr><td>nested table</td></tr>
</table>
</td>
</tr>
</table>