You are on page 1of 8

NAME:-keshav raj yadav

SECTION-B

BRANCH-CSE

ROLL NO. - 12

SUBJECT- WEB D

ASSIGNMENT 1:

Q1:
<!DOCTYPE html>

<html>

<head>

<title>My First Web</title>

</head>

<body>

<h1>KIET Group of Institutions</h1>

<h1>Department of CSE</h1>

<h1>Third Year</h1>

<h1>Sem 5</h1>

<h1>Sec A</h1>

<h1>Sub:Web Designing</h1>

</body>

</html>

output:
Q2:

<html>

<head>

<style>

h1 {color:red;

font-size: 100%;font-weight: 10;

p {color:red;font-size: 100%;font-weight: 10}

h2 {color:red;font-size: 100%;font-weight: 10}

</style>

</head>

<body>

<p>this is <b>heading</b></p>
<p>this is <i> sub heading</i></p>

<p>this is <u>paragraph</u><p>

<p>rohan is in 12th standard<br>he is a good student<p>

<h1> My first web</h1>

<hr>

<h2>This is my second web</h2>

</body>

</html>

OUTPUT:

Q3:

<!DOCTYPE html>

<html>

<head>

<style>

#para1 {color:blue;font-size: 100%;font-weight: 10;

text-align:center}

#para2 {color:pink;font-size: 100%;font-weight: 10;text-align:right;

#para3 {color:green;font-size: 100%;font-weight: 10;text-align:left}


</style>

</head>

<body>

<p id="para1">Web development is the work involved in developing a website for the Internet
(World Wide Web) or an intranet (a private network)</p><br>

<p id="para2">Web development can range from developing a simple single static page of plain
text to complex web applications, electronic businesses, and social network services.</p><br>

<p id="para3">A more comprehensive list of tasks to which Web development commonly refers,
may include Web engineering, Web design, Web content development, client liaison,</p>

</body>

</html>

OUTPUT:

Q4:

<!DOCTYPE html>

<html>

<head>

<style>

</style>
</head>

<body>

<ol type="1">

<li>book1</li>

<li>book2</li>

<li>book3</li>

<li>book4</li>

<li>book5</li>

<li>book6</li>

</ol>

<ol type="A">

<li>book1</li>

<li>book2</li>

<li>book3</li>

<li>book4</li>

<li>book5</li>

<li>book6</li>

</ol>

</ol>

<ol type="i">

<li>book1</li>

<li>book2</li>

<li>book3</li>

<li>book4</li>

<li>book5</li>

<li>book6</li>
</ol>

<ol type="I">

<li>book1</li>

<li>book2</li>

<li>book3</li>

<li>book4</li>

<li>book5</li>

<li>book6</li>

</ol>

<ul style="list-style-type:square;">

<li>GOA</li>

<li>LONDON</li>

<li>HAWAII</li>

<li>AUSTRALIA</li>

<li>LAS VEGAS</li>

<li>IRELAND</li>

</ul>

<ul style="list-style-type:disc;">

<li>GOA</li>

<li>LONDON</li>

<li>HAWAII</li>

<li>AUSTRALIA</li>

<li>LAS VEGAS</li>

<li>IRELAND</li>

</ul>

<ul style="list-style-type:circle;">

<li>GOA</li>

<li>LONDON</li>
<li>HAWAII</li>

<li>AUSTRALIA</li>

<li>LAS VEGAS</li>

<li>IRELAND</li>

</ul>

OUTPUT:

You might also like