You are on page 1of 15

1.

Create a webpage in HTML which has Your College Name as heading and add
the text regarding it & make the use of Quotation and Citation Elements &
save the file with your name.
<html>
<head>
<title>GIBS</title>

<body><h1 style="color:Tomato;"> GITARATTAN INTERNATIONAL BUSINESS


SCHOOL</h1>
<p style="color:MediumSeaGreen;"> About Gitarattan International Business School</p>
<blockquote cite="http://www.worldwildlife.org/who/index.html">
Gitarattan International Business School was established in the year 2004 under the aegis
of RohiniEducational Society. The Society is proudly running various other successful
Institutions in Delhi like Gitarattan Institute of Advanced Studies & Training, Gitarattan Jindal
Public School & The Sovereign School. These institutions are well known among all
stakeholders for quality education, decent infrastructure and location. These institutions are
rated and ranked very high by various regulatory bodies.

Gitarattan International Business School (GIBS) is affiliated to Guru Gobind Singh


IndraprasthaUniversity, Delhi and is approved by All India Council for Technical Education
(AICTE), Ministry of HRD, Government of India for Technical programmes and Bar Council
of India for Law programmes. The Institute is conducting programme like MBA, MBA
(International Business), BBA (General), (Both First and Second shift), BA LLB and BBA
LLB.
Gitarattan International Business School is recognized as an institute that prepares students
with pragmatic decision-making abilities and skills for developing comprehensive strategies
through a well-crafted curriculum, faculty of the highest academic expertise, and interactions
with industry-leaders with a global perspective.

Education in GIBS is imparted through a thoughtfully balanced mix of teaching pedagogy


like Case supplements, Team Activities, Summer Internship, Project dissertation,
Presentations, Students Seminar, Business Plan Development, Industry Analysis,
Personality Development Workshops, Eminent & Professional Lecture Series, Seminars,
Conferences and Skill Based Training Certificate Courses for enhancing employability and
entrepreneurship.

Institute has a resourceful Industry Institute Partnership Cell which organizes Pre-Placement
Talks, Guest Lectures, Summer Internship Fair and Industrial Visits. With more than 15
years of journey in training future entrepreneurs and managers, with the curriculum
benchmarked against the best in the country, Gitarattan International Business School
(GIBS) has been recognized for providing an integrated learning experience stressing basic
skill development, academic excellence, employable skill preparation and intellectual rigor

Institute offers myriad opportunities for involvement and growth through student-led events,
fests, clubs, and committees for music, dance, drama, sports, NSS and other creative
activities.
</blockquote>

</head>
</HTML>
2. Create a webpage in HTML to show all the types of heading tags and use
Comment Tag to describe them.

<html>
<head>
<title>GIBS</title>

<!-- HTML comments are not displayed in the browser, but they can help document your
HTML source code -->

<h1 style="font-size:60px;">GIBS has been graded ‘A’ by National Assessment &


Accreditation Council in 2nd Cycle.</h1>
<h2 style="font-size:40px;">GIBS has been rated ‘A+’ by State fee Regulatory Committee, a
fee committee of Govt. of NCT of Delhi</h2>
<h3 style="font-size:50px;">It has been rated highest grading ‘A’ by Joint inspection
Committee of Govt of NCT of Delhi & GGSIP University since 2013 till date.</h3>
<h4 style="font-size:40px;">It has been rated Grade ‘A’ by Academic Audit Cell of GGSIP
University since 2011 till date.</h4>
<h5 style="font-size:30px;">GIBS has also achieved 4 star ranking in IIC MOE ranking
2021.</h5>
<h6 style="font-size:20px;">Also, GIBS has been rated as number 2 pan India by times
Business School survey in 2021, 2019 and 2018.</h6>
</head>
</HTML>
3. Create a static web page which defines all text formatting tags of HTML and
briefly explain all the tags.

<html>
<head>

<title>SNEHA MISHRA</title>

<b>Bold tag - The HTML <b> element defines bold text </b>
<br>

<strong>Strong tag - The HTML <strong> element defines text with strong
importance.</strong>
<br>

<i>Italic tag - The HTML <i> element defines a part of text in an alternate voice or mood.
The content inside is typically displayed in italic.</i>
<br>

<em>Emphasized tag - The HTML <em> element defines emphasized text. </em>
<br>

<p>Subscript tag - H<sub>2</sub>O</p>


<br>

<p>Superscript tag - X<sup>2</sup></p>


<br>

<u>Underline tag - The HTML <u> element defines underline text </u>

<br>
</head>
</HTML>
4. Create your resume using HTML tags and include superscript, subscript tags
and mono spaced Font in it.

<html>
<head>

<title>SNEHA MISHRA</title><
div id="header"></div>
<div class="left"></div>
<div class="stuff">
<br><br>
<h1>Resume</h1>
<h2>Sneha Mishra</h2>
<hr />
<br>
<p class="head">Interests</p>
<ul>
<li>Drawing</li>
<li>Photography</li>
<li>Design</li>
<li>Programming</li>
<li>Computer Science</li>
</ul>
<p class="head">Skills</p>
<ul>
<li>Web Design with HTML</li>
</ul>
<p class="head">Education</p>
<ul>

<li>10<sup>th</sup> from Modern Public School</li>


</a>

<li>12<sup>th</sup> from Modern Public School</li>


</a>
<li> Pursuing BBA - 2<sup>nd</sup> from Gitarattan International Business School </li>
</ul>
<p class="head">Extracurriculars</p>
<ul>
<li>Football</li>
<li>Gardening</li>
<li>Net Surfing</li>
</ul>
<p class="head">Personal Details</p>
<ul>
<li>BC - 23 (West) Shalimar Bagh, Delhi</li>
<li>987654321</li>
<li>Single</li>
<li>Indian</li>
</ul>
</div>
<div class="right"></div>
<div id="footer">
<h2 id="name">Sneha Mishra</h2></div>

</head>
</HTML>
5. Create a static webpage using table tags of HTML and explain all the attributes
define under Table Tag.

<html>
<head>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
</style>
</head>
<body>

<table>
<tr>
<th>Attributes and tags</th>
<th>Illustrations</th>
</tr>
<tr>
<td>Define Table</td>
<td><table>..</table></td>
</tr>
<tr>
<td>Add caption</td>
<td><caption>..</caption></td>
</tr>
<tr>
<td>Table row</td>
<td><tr>..</tr></td>
</tr>
<tr>
<td>Table header</td>
<td><th>..</th></td>
</tr>
<tr>
<td>Table Data in a cell</td>
<td><td>..</td></td>
</tr>
<tr>
<td>Cell spacing</td>
<td><table cellspacing="">...</table></td>
</tr>
<tr>
<td>Cell padding</td>
<td><table cellpadding="">...</table></td>
</tr>
<tr>
<td>Table border</td>
<td><table border="">...</table></td>
</tr>
<tr>
<td>Alignment</td>
<td><table align=center/left/right>...</table></td>
</tr>
<tr>
<td>colspan in table</td>
<td><table colspan="">...</table></td>
</tr>
<tr>
<td>rowspan in table</td>
<td><table rowspan="">...</table></td>
</tr>
<tr>
<td>Cell color</td>
<td><table bgcolor="#$$$$$$">...</table></td>
</tr>
<tr>
<td>No linebreaks</td>
<td><table nowrap>...</table></td>
</tr>
</table>

</body>
</html>
6. Create three HTML files named 1.html, 2.html and 3.html and link them
together to each other and put the appropriate content in each file.

Hyperlink File - 1
<html>
<head>

<a href="E:\computer\neetu\sneha 12\BBA\html\hyperlink 2.html">ABOUT GIBS</a><

br>

<a href="E:\computer\neetu\sneha 12\BBA\html\hyperlink 3.html">VISION &


MISSION</a>

<br>

</head>
</HTML>
Hyperlink File - 2
<html>
<head>
<title>GIBS</title>

<body><h1 style="color:Tomato;"> GITARATTAN INTERNATIONAL BUSINESS


SCHOOL</h1>
<p style="color:MediumSeaGreen;"> About Gitarattan International Business School</p>
<blockquote cite="http://www.worldwildlife.org/who/index.html">
Gitarattan International Business School was established in the year 2004 under the aegis
of RohiniEducational Society. The Society is proudly running various other successful
Institutions in Delhi like Gitarattan Institute of Advanced Studies & Training, Gitarattan Jindal
Public School & The Sovereign School. These institutions are well known among all
stakeholders for quality education, decent infrastructure and location. These institutions are
rated and ranked very high by various regulatory bodies.

Gitarattan International Business School (GIBS) is affiliated to Guru Gobind Singh


IndraprasthaUniversity, Delhi and is approved by All India Council for Technical Education
(AICTE), Ministry of HRD, Government of India for Technical programmes and Bar Council
of India for Law programmes. The Institute is conducting programme like MBA, MBA
(International Business), BBA (General), (Both First and Second shift), BA LLB and BBA
LLB.
Gitarattan International Business School is recognized as an institute that prepares students
with pragmatic decision-making abilities and skills for developing comprehensive strategies
through a well-crafted curriculum, faculty of the highest academic expertise, and interactions
with industry-leaders with a global perspective.

Education in GIBS is imparted through a thoughtfully balanced mix of teaching pedagogy


like Case supplements, Team Activities, Summer Internship, Project dissertation,
Presentations, Students Seminar, Business Plan Development, Industry Analysis,
Personality Development Workshops, Eminent & Professional Lecture Series, Seminars,
Conferences and Skill Based Training Certificate Courses for enhancing employability and
entrepreneurship.

Institute has a resourceful Industry Institute Partnership Cell which organizes Pre-Placement
Talks, Guest Lectures, Summer Internship Fair and Industrial Visits. With more than 15
years of journey in training future entrepreneurs and managers, with the curriculum
benchmarked against the best in the country, GitarattanInternational Business School
(GIBS) has been recognized for providing an integrated learning experience stressing basic
skill development, academic excellence, employable skill preparation and intellectual rigor

Institute offers myriad opportunities for involvement and growth through student-led events,
fests, clubs, and committees for music, dance, drama, sports, NSS and other creative
activities.
</blockquote>

<a href="E:\computer\neetu\sneha 12\BBA\html\hyperlink 1.html">BACK</a><


/head>
</HTML>
Hyperlink File - 3

<html>
<head>
<title>GIBS</title>

<body><h1 style="color:Tomato;"> GITARATTAN INTERNATIONAL BUSINESS


SCHOOL</h1>

<blockquote cite="http://www.worldwildlife.org/who/index.html">

<b>Vision of the Institute</b>


To prepare outstanding professionals in business management and other disciplines, who
can provide intellectual-emotional-psychological leadership; design-develop-implement
systems & processes; and research-innovate-compete at national & international level.

<br>
<b>Mission of the Institute</>
Provide an integrated learning experience stressing basic skill development, academic
excellence, employable skill preparation and intellectual rigor;
Promote integrated personality development of students;
Encourage research and excellence in all activities of teaching fraternity;
Promote continuous improvement in processes and systems through innovative ideas and
technologies, and
Nurture culture of fairness, equity and partnership.
<br>
<b>Quality Policy of the Institute</b>
Design Systems, Processes and Structure for quality delivery;
Develop Culture to foster Value Proposition;
Nurture Leadership; and
Invest Funds to sustain Quality Assurance.

<br>
<b>Values</b>
Abidance to Law: To conduct all operations within the prescribed legal framework, norms
and standards;
Ethics: Foster a learning environment that promotes responsible, principled and accountable
behaviour among all members of the community;
Integrity: Commit to practices that are fair, honest and objective;
Student Service: Respond to inquiries, requests, and concerns in an appropriate and timely
manner, and
Quality: Constant endeavour to enhance quality of delivery and technology
level.</blockquote>

<a href="E:\computer\neetu\sneha 12\BBA\html\hyperlink 1.html">BACK</a><


/head>
</HTML>
7. Create a webpage which defines different empty tags.
<html>
<head>

<title>SNEHA MISHRA</title>

<h1> EMPTY TAGS IN HTML </h1>


<b> HTML elements that don't have closing tags are considered empty tags,
<br>void tags, or self-closing tags as they cannot contain other elements or
content.
<br>Container tags that have nothing inside them such as an empty are also
referred
to as an empty tag. </b>
<p>
<br>

<b>The img element is an empty tag because it does not have a closing tag
and it cannot contain other
<br>content or elements. These tags are also called void tags or self-closing
tags. </b>

<p>
<br>

<b>The br element is an empty tag because it does not have a closing tag and
it cannot contain other
<br>content or elements. These tags are also called void tags or self-closing
tags. In HTML5, you can indicate
<br>when a tag is self-closing by adding an optional trailing.</b>
<p>
<br>

<b>The input element is an empty tag because it does not have a closing tag
and it cannot contain other
<br>content or elements. These tags are also called void tags or self-closing
tags. In HTML5, you can indicate
<br>self-closing tags by adding an optional trailing slash.</b>
<p>
<br>

<b>The hr element is an empty tag because it does not have a closing tag and
it cannot contain other content
<br>or elements. These tags are also called void tags or self-closing tags. In
HTML5, you can indicate when a
<br>tag is self-closing by adding an optional trailing slash.</b>
<p>
<br>

<br>
</head>
</HTML>

You might also like