0% found this document useful (0 votes)
6 views3 pages

Experiment On HTML Coding

The document outlines an experiment aimed at studying HTML coding and designing a web page. It explains the structure of HTML, including tags, attributes, and provides a sample HTML code for a web page dedicated to 2nd semester students. The code includes various elements such as headings, images, links, and student commitments.

Uploaded by

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

Experiment On HTML Coding

The document outlines an experiment aimed at studying HTML coding and designing a web page. It explains the structure of HTML, including tags, attributes, and provides a sample HTML code for a web page dedicated to 2nd semester students. The code includes various elements such as headings, images, links, and student commitments.

Uploaded by

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

Experiment no 8

Aim : To study HTML coding and design a web page


HTML Coding
HTML is the standard markup language for creating Web pages. Hypertext Markup Language, a
standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects on
World Wide Web pages.

Tags and Attributes:


HTML tags are element names surrounded by angle brackets. Most HTML elements have an
opening tag and a closing tag. The only difference between opening and closing tags is the forward
slash after the opening bracket of a closing tag.

A tag may have some attributes. Attribute is a name-value pair separated by an equals (=) sign.
Attributes offer a variety of options for the contained text. They are the properties of a command of
a tag.

HTML Page Structure

Experiment Code:

<html>

<head>

<title> my first webpage</title>

</head>
<body background="C:\Users\ADMIN\Desktop\vinni html\GM.jpg">

<center>

<h1><b><i><font face="Arial" size="10" color="blue"> 2nd semester students

</b></i></h1></font>

<img src="C:\Users\ADMIN\Desktop\vinni html\welcome.jpg" alt="Welcome

to web page designing"/ >

<p><font face="Arial" size="8" color="red"> Webpage for 2nd sem students

</p></font>

<h2> <font face="arial" size="8" color="blue">web page

designing </font></h2>

<hr color="blue">

<a href="https://www.bitdurg.ac.in"> <font face="Arial" size="8" color=

"violet"> BIT website Link </font> </a>

<br>

<a href="https://www.csvtu.ac.in"> <font face="Arial" size="8" color=

"violet"> CSVTU website LINK </font> </a>

<br>

<p> <hr color="blue"> <font face="Arial" size="7" color="red">

<br> STUDENT COMMITMENT <br>

Shall be in time to the institution.<br>

Shall wear the ID card .<br>

Shall be regular and punctual to the classes and maintain 75% attendance

to be able to appear for final examination.<br>

Follow the instructions of the teacher carefully in the classrooms.<br>

Meet all deadlines of assignments, submission of projects and

lab records.<br>

Abide by the rules of various laboratories and not damaging the

equipment’s.<br>

Not to be in the canteen during working hours of the institute.<br> </font>

</p>

<h1>PDF Example</h1>
<p>Open a PDF file </p>

<a href="C:\Users\ADMIN\Desktop\vinni html\syllabus FOC.pdf">

CLICK FOR FOC SYLLABUS </a>

</center>

</body>

</html>

You might also like