0% found this document useful (0 votes)
19 views

College information

HTML program

Uploaded by

shalinikshalu6
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)
19 views

College information

HTML program

Uploaded by

shalinikshalu6
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/ 7

1.

write a html code to create simple web page to display your college
information.

<!DOCTYPE html>

<html>

<head>

<title>Tumkur University</title>

</head>

<body>

<Center><img src=”C:\Users\pictures\logo.jpg” width=”50” height =“50”>


</Center>

<h1 align="center">Tumkur University</h1>

<p align="center">Tumkur University was established in 2004 in Tumkur,


Karnataka, India. It offers various undergraduate and postgraduate courses.
The university is dedicated to providing quality education and research
opportunities to its students.</p>

<p>Tumkur University offers various courses including Bachelor of Arts


(B.A.), Bachelor of Science ((link unavailable)), Bachelor of Commerce ((link
unavailable)), Master of Arts (M.A.), Master of Science ((link unavailable)),
and Master of Commerce ((link unavailable)). The university also offers
research programs in various disciplines.</p>

<p>The university has a well-equipped campus with modern infrastructure,


including libraries, laboratories, auditoriums, and sports facilities. The
university also has a strong faculty team with experienced professors and
researchers.</p>
<p>For admissions, students can contact the university office or visit the
university website. The university also provides scholarships and financial
assistance to deserving students.</p>

<p>Contact Us:</p>

<p>Tumkur University, Vishwavidyanilaya Karyalaya, B.H. Road, Tumkur-


572103, Karnataka, India.</p>

<p>Phone: 0816-2255611</p>

<p>Email: <a
href="mailto:[email protected]">[email protected]</
a></p>

<p align="center">&copy; 2024 Tumkur University. All Rights Reserved.</p>

</body>

</html>

2.Wrte a HTML code to create different types of ordered lists .

<!DOCTYPE html>

<html>

<head>

<title>Ordered Lists</title>

</head>

<body>

<h1>Different Types of Ordered Lists</h1>

<h2>Default Ordered List (Numbers)</h2>


<ol>

<li>Item 1</li>

<li>Item 2</li>

<li>Item 3</li>

</ol>

<h2>Lower Alphabetical Ordered List</h2>

<ol type="a">

<li>Item A</li>

<li>Item B</li>

<li>Item C</li>

</ol>

<h2>Upper Alphabetical Ordered List</h2>

<ol type="A">

<li>Item A</li>

<li>Item B</li>

<li>Item C</li>

</ol>

<h2>Lower Roman Numeral Ordered List</h2>

<ol type="i">

<li>Item i</li>

<li>Item ii</li>

<li>Item iii</li>

</ol>
<h2>Upper Roman Numeral Ordered List</h2>

<ol type="I">

<li>Item I</li>

<li>Item II</li>

<li>Item III</li>

</ol>

</body>

</html>

3.Write html code to insert an image of Tim Berners lee and his bio data.

<!DOCTYPE html>

<html>

<head>

<title>Tim Berners-Lee</title>

</head>

<body>

<h1>Tim Berners-Lee</h1>

<img src=”tim-berners-lee.jpg” alt=”Tim Berners-Lee”>

<p>

<strong>Tim Berners-Lee</strong>, often referred to as the “father of


the World Wide Web,” is a British computer scientist. He invented the World
Wide Web in 1989 while working at CERN. His groundbreaking work has
revolutionized the way we access and share information globally.

</p>

</body>

</html>

4.write HTML code to create embed multimedia

<html>
<head>

<title>Multi-Media Data</title>

</head>

<body>

<center>

<h1>Multi-Media Data</h1>

<h2><u>IMAGE</u></h2>

<img src=”F:\BSc and BCA Notes\Web Technology\Lab Programs\Image.jpg”


width=”150”

Height=”200”>

<br>

<h2><u>AUDIO</u></h2>

<audio controls>
<source src=”F:\BSc and BCA Notes\Web Technology\Lab Programs\
Audio.mp3”

Type=”audio/mp3”>

</audio><br>

<h2><u>VIDEO</u></h2>

<video width=”150” height=”150” controls>

<source src=”F:\BSc and BCA Notes\Web Technology\Lab Programs\


Video.mp4”

Type=”video/mp4”>

</video><br>

<h2><u>GIF</u></h2>

<img src=”F:\BSc and BCA Notes\Web Technology\Lab Programs\GIF_File.gif”


alt=”Sample GIF”>

</center>

</body>

</html>
5.write a html code to create your college time table

You might also like