Internet Technology Lab Experiments Bca
Internet Technology Lab Experiments Bca
QUESTION:
Design your first webpage displaying a big heading and small paragraph using HTML?
❖ CODE:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>
Result:
EXPIREMENT-2
QUESTION:
Design a web page displaying “My first web page by adding following tags including font
change, color change and changed font size using HTML?
❖ CODE:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title
<body>
<font color="RED">
<font size="5"> This is a Big Heading </font face></font size></font color>< </h1>
</body>
</html>
Result:
EXPIREMENT-3
QUESTION:
Write a HTML program to display text using different attributes like left alignment, center
alignment, right alignment, and style attribute (to add color).
❖ CODE:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h2 style="color: blue; text-align: left;">Left Aligned Text</h2> <p>This text is aligned to
the left and styled with a blue color.</p>
</html>
Result:
EXPIREMENT-4
QUESTION:
Write a HTML program to display text using different formatting styles like bold text, italic
text, underlined text, strike text, monospaced font, superscript text, subscript text, inserted
text, inserted text, deleted text, large text, smaller text, and grouping content?
❖ CODE:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div>
<h2>Grouped Content</h2>
</div>
</body>
</html>
Result:
EXPIREMENT-5
QUESTION:
Write a program using different phrase tags like; emphasized text, marked text, strong text,
text abbreviation, acronym element, text direction, special terms, quoting text, short
quotations, text citation, computer code, keyboard text, programing variables, program
output, and address text.
❖ CODE:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<address>
Visit us at:<br>
Example.com<br>
India
</address>
</body>
</html>
Result:
EXPIREMENT:6
QUESTION:
❖ CODE:
<!DOCTYPE html>
<html>
<head>
<title>Education Details</title>
</head>
<body>
<table border="1">
<tr>
<th>Degree</th>
<th>Institution</th>
<th>Year of Passing</th>
<th>Grade</th>
</tr>
<tr>
<td>Tenth</td>
<td>2021-22</td>
<td>b+</td>
</tr>
<tr>
<td>twelth</td>
<td>2023-24</td>
<td>b+</td>
</tr>
<tr>
<td>Graduation </td>
<td>______</td>
</tr>
</table>
</body>
</html>
Result: