Recent

6/recent/ticker-posts

HTML Que 1

HTML (Que 1)



Q1. Create this Web Page ?


ANS. 

<html>
<head>
<title>My Page</title>
</head>
<body>
<p>This is a List of the <b>Games</b></p>
<ol>
<li>Prince of Persia</li>
<li>God of War</li>
<li>GTA</li>
<li>Speed Racing</li>
<li>Angry Birds</li>
</ol>
</body>
</html>

Q2. Create this Web page



ANS.

<html>
<head>
<title>My Page</title>
</head>
<body>
<p><b>Pursuits that keep me Alive</b></p>
<br>
<p><u>Favorite Pass time</u></p>
<ul>
<li>Listening Music</li>
<li>Indulging in Theater</li>
</ul>
<br>
<p><u>Favorite Music Tracks </u></p>
<br>
<p>Though I enjoy all type of Music,but still <i>Ghazals</i>,<i>Sufi</i> and <i>Light Music</i> consume most of my time.</p>
<br>
<p><u>Theater Involvement</u></p>
<br>
<p>I am more of a theater enthusiast as i live watching plays.Sometime, I have volunteered fir some production works also.</p>
</body>
</html>

Q3. Create this Web Page




ANS.

<html>
<head>
<title>My Page</title>
</head>
<body>
<p><b>RESTAURANT</b></p>
<br>
<p>Collect formation for</p>
<ul>
<li>Menu</li>
<li>Reservation</li>
<li>Catering</li>
<li>Tours</li>
</ul>
<p align="center">Menu Available are</p>
<table align ="center" border="3">
<tr>
<td>1</td>
<td>Italian</td>
</tr>
<tr>
<td>2</td>
<td>American</td>
</tr>
<tr>
<td>3</td>
<td>Chinese</td>
</tr>
</table>
</body>
</html>

Q4. Create this Web Page






ANS.

<html>
<head>
<title>My Page</title>
</head>
<body>
<ul>
<li><a href="#">Sample Link One</a></li>
<li><a href="#">Sample Link Two</a></li>
<li><a href="#">Sample Link Three</a></li>
<li><a href="#">Sample Link Four</a></li>
</ul>
<h1>Sample Heading</h1>
<p>This is a sample paragraph for our sample HTML file. In our next lesson we will learn how to style this page. This is a sample sentence to add more content.</p>
<h2>A Slightly Less Important Heading</h2>
<p>This is a sample paragraph for our sample HTML file. In our next lesson we will learn how to style this page. This is a sample sentence to add more content.</p>
</body>
</html>








Post a Comment

0 Comments