You are on page 1of 8

BENGAL SCHOOL OF TECHNOLOGY

SUGANDHA, DELHI ROAD, CHINSURAH,


HOOGHLY, WEST BENGAL-712102.

REPORT WRITING
ON
TITLE OF THE TOPIC: HTML

SUBMITTED BY:

NAME : SUSMITA GHOSH

COURSE : B.PHARM YEAR/SEMESTER : 4TH YEAR , 7TH SEM

ROLL NO : 19301920115 REGISTRATION NO: 201930201920001

SUBJECT: CAP SUBJECT CODE: PT-381

ACADEMIC SESSION: 2022-23 DATE OF SUBMISSION: 24/08/2022

AUGUST 2022
1. Write down the basic structure of HTML ?
Ans:

Solution code : Output:

<html>

<head>

<title> basic page </title>

</head>

<body>

This is my 1st Web Page

</body>

</html>

2) Q2. Write HTML code to generate following output?


a. Title = “Hardware”
b. Computer Parts = Heading tag 3 , font color = “RED” And
Position = Center.
c. Create a Multilevel list. List is given below:-
d. List Font style = “Times New Roman
Hardware

Computer Parts
o Cpu
o UPS
o RAM
I. SRAM
II. DRAM
o HARDDISK
o MONITOR
A. CRT
B. LCD
C. LED
o Keyboard
o Mouse

Ans :

Solution Code : <html>

AUGUST 2022
<head>

<title> Hardware </title>

</head>

<body>

<h3><font color="red"><center> Computer Parts</center></font color> </h3>

<ul type="circle"><font style="Times New Roman">

<li>CPU</li>

<li>UPS</li>

<li>RAM</li>

<ol type="I">

<li>SRAM</li>

<li>DRAM</li>

</ol>

<li>HARDDISK</li>

<li>MONITOR</li>

<ol type="A">

<li>CRT</li>

<li>LCD</li> OUTPUT:

<li>LED</li>

</ol>

<li>keyboard</li>

<li>Mouse</li>

</font>

</ul>

</body>

</html>

AUGUST 2022
3) Q3. Write HTML code to generate following output:

a. Create a page background color (Color Code = #E4EEC4)

b. Create a heading Computer, (Position = “center”| Heading Style =”


Imprint MT Shadow”)

c. Add computer/ Desktop image in center position. (Image height =450 and
width = 500).

d. Write down 2 Paragraphs on computer (Each paragraph contains


different font faces and font color)
Ans :

Solution Code : <html>

<head>

<title> Paragragh on computer </title>

</head>

<body bgcolor="#E4EEC4">

<h2><font style="Imprint MT Shadow"><center> Computer</center></font></h2>

<img src="https://5.imimg.com/data5/LP/FA/MY-50363679/computer-world-500x500.jpg"
height=450 width=500>

<p><font color ="red" face="Times New Romen"> A computer is a digital electronic


machine that can be programmed to carry out sequences of arithmetic or logical operations
(computation) automatically. Modern computers can perform generic sets of operations
known as programs. These programs enable computers to perform a wide range of
tasks</font></p>

<p><font color ="#0000FF" face="Imprint MT Shadow"> A computer system is a


"complete" computer that includes the hardware, operating system (main software), and
peripheral equipment needed and used for "full" operation. This term may also refer to a
group of computers that are linked and function together, such as a computer network or
computer cluster. </font></p>

</body>

</html>

AUGUST 2022
4) Write HTML code to generate following output?

Ans:

Solution code : <html>

<head>

<title> Student mark sheet</title>

</head>

<body>

<center>

<table border="1" width="50%" height="75%">

<tr>

<tr bgcolor="#000000">

AUGUST 2022
<th colspan ="6"> <font color="#FFFFFF"> STUDENT MARK SHEET </font> </th>

</tr>

<tr bgcolor="#E9E4D4">

<th>Name</th>

<th>Math</th>

<th>Science</th>

<th> English</th>

<th>Physics</th>

<th> General Knowledge </th>

</tr>

<tr bgcolor="#E9E4D4">

<td>David</td>

<td>85</td>

<td>87</td>

<td>88</td>

<td>92</td>

<td>88</td>

</tr>

<tr bgcolor="#E9E4D4">

<td>Richard</td>

<td>91</td>

<td>81</td>

<td>78</td>

<td>71</td>

<td>74</td>

</tr>

<tr bgcolor="#E9E4D4">

AUGUST 2022
<td>John</td>

<td>81</td>

<td>86</td>

<td>88</td>

<td>84</td>

<td>92</td>

</tr>

<tr bgcolor="#E9E4D4">

<td>Tony</td>

<td>84</td>

<td>86</td>

<td>87</td>

<td>82</td>

<td>81</td>

</tr>

<tr bgcolor="#E9E4D4">

<td>Scott</td>

<td>71</td>

<td>79</td>

<td>82</td>

<td>88</td>

<td>89</td>

</tr>

</table>

</center>

</body>

</html>

AUGUST 2022
OUTPUT:

CONCLUSION :
. It is concluded that after performimg this report I am learned some basic HTML
tags allow me to create structured web page and images and learned structured and functional
Html documents. So, HTML is the combination of Hypertext and Markup language. Hypertext
defines the link between web pages. A markup language is used to define the text document
within the tag which defines the structure of web pages.

REFERENCE :
 HTML Tutorial, https://www.w3schools.com/html/
24/08/2022 12:10 TO 12:12
 Arora.S, 2010,4th edition, A Text Book of Computer Application, S.chand
Publication, page no. 34-40.

AUGUST 2022

You might also like