[go: up one dir, main page]

0% found this document useful (0 votes)
54 views1 page

Web Development Practical 1.3

The document is an HTML code for creating a web page titled 'This is the First Practical'. It includes character formatting tags such as bold (<b>), italic (<i>), and underline (<u>) to format text, along with a placeholder for a marquee and an image. The content consists of paragraphs demonstrating the use of these formatting tags.

Uploaded by

lecivi3208
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
54 views1 page

Web Development Practical 1.3

The document is an HTML code for creating a web page titled 'This is the First Practical'. It includes character formatting tags such as bold (<b>), italic (<i>), and underline (<u>) to format text, along with a placeholder for a marquee and an image. The content consists of paragraphs demonstrating the use of these formatting tags.

Uploaded by

lecivi3208
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

-- write a code to create a web page using the following


*title *Marquee *Charater formatting tags such as B,I,U *Strike *Image-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>This is the First Practical </title>
</head>
<body>
<h3>This is the First Practical</h3>
<!-- Code for create a web page using Character formatting tag <b> using for
Bold the text -->
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. <b>Ullam harum
asperiores doloribus perferendis </b>quos earum quae aspernatur <b> architecto,
rerum, nesciunt rem</b> debitis excepturi suscipit? Debitis officia accusantium
facere optio est id <b>voluptate aliquam ad! Voluptatibus, cum quae!</b>
</p>
<!-- Code for create a web page using Character formatting tag <i> using for
Italic the text-->
<p>
<i> Lorem ipsum dolor sit amet, consectetur</i> adipisicing elit. Sequi
laudantium illum blanditiis voluptatem quasi accusamus a necessitatibus.
<i>Architecto totam asperiores repellat hic incidunt, aliquam deleniti beatae, nam
autem, vitae illum odio</i>. Aliquam voluptates vitae harum, unde aut fugit facere.
</p>
<!-- Code for create a web page using Character formatting tag <u> using
for Underline the text -->
<p>
<u>Lorem ipsum dolor sit amet</u> consectetur adipisicing elit.
Placeat nam nobis numquam totam, itaque similique veritatis minima odio provident
blanditiis dicta qui dolore labore? Accusamus qui non quos quis nesciunt,
laudantium, dicta porro aliquid minus beatae eveniet laborum quasi necessitatibus
voluptatibus. <u>Quis sint assumenda nisi minus voluptates deleniti fugit!</u>
</p>
</body>
</html>

You might also like