Bca WT Assignment-1
Bca WT Assignment-1
BCA EA
1029802024
BCA ASSIGNMENT WT-1
1. Create a webpage using HTML that prints heading titled “Welcome To VIPS Family” at the
centre of the screen with different heading size.
<html>
<head>
<title>WELCOME TO VIPS FAMILY</title>
</head>
<body>
<center>
<h1>Welcome To VIPS Family</h1>
<h2>Welcome To VIPS Family</h2>
<h3>Welcome To VIPS Family</h3>
<h4>Welcome To VIPS Family</h4>
<h5>Welcome To VIPS Family</h5>
<h6>Welcome To VIPS Family</h6>
</center>
</body>
</html>
1
2. Create a webpage using HTML to implement Text formatting Tags such as Bold, Italic, Underline,
Strike, Marquee, Subscript, Superscript, Font as well as the use of empty tags such as <br>, <hr>
<html>
<head>
<title>Web Technologies</title>
</head>
<style>
body{
background-color: antiquewhite;
font-size:17px;
font-family: Arial, Helvetica, sans-serif;
}
</style>
<body>
<h1><marquee>Web Technologies</marquee></h1>
<hr>
<pre>HTML (HyperText Markup Language): The standard language used to create and
structure content on the web<br>
<b>CSS (Cascading Style Sheets): Used to style and layout web pages, including
colors, fonts, and spacing.</b>
<i>JavaScript: A programming language that adds interactivity to web pages, like
animations and form validation.</i>
<u>Bootstrap: A front-end framework that provides ready-to-use components and
responsive grid layouts for faster web development.</u>
<strike>React: A JavaScript library for building user interfaces, particularly for
single-page applications.</strike>
H<sub>2</sub>O
CO<sup>2</sup>
</pre>
</body>
</html>
1
3.Create a webpage using HTML to implement different types of ordered as well as unordered list as
<html>
<head>
<title>Online book library</title>
</head>
<style>
body{
background-color: rgb(215, 162, 202);
}
h1{
text-align: center;
}
</style>
<body>
<h1>Online Books Library</h1>
<pre>Books are our best friends . we can obtain many thoughts from books
the various books featured in our library are:
</pre>
<p>A. Autobiography</p>
<ol type="a">
<li>My Experiments with truth</li>
<li>Wings of fire</li>
</ol>
<p>B. Fiction</p>
<ul type="disk">
<li>Bacon death</li>
<li>pride and prejudice</li>
</ul>
<p>C. Adventure </p>
<ul>
<li>Gulliver's travel</li>
<li>the phantom toolbooth</li>
</ul>
</body>
</html>