Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 11

RANI LAXMI BAI MEMORIAL

SCHOOL
SECTOR-14 VIKAS NAGAR
LUCKNOW

NAME- ANNNANYA SRIVASTAVA


CLASS-10
SECTION-A
ROLL NO.- 7 REGISTERATION NUMBER-
ACKNOWLEDGEM
ENT
I would like to express my special thanks to my
computer teacher MRS. SHIVIKA MATHUR ,
who give me the golden opportunity to do this
wonderful project. I am also very grateful to my
other computer teachers and school teachers for
helping me with the necessary equipment and
valuable guidance.

Finally, I would like to thank my parents and close


friends, who were always with me from
imagination to the implementation of this project.
Without their cooperation, this project would not
have been completed. Only because of all of you, I
was able to make my project successful and make
it a good enjoyable experience.

REQUIREMENT OF
HARDWARE AND
SOFTWARE
 TEXT-EDITOR NOTEPAD
 WEB BROWSER-GOOGLE
CHRONME
 WORD- MS WORD

HARDWARE-
 COMPUTER
 PRINTER
INTRODUCTION

Welcome to the “Introduction Age” throughout the world of


computer.
This is a project report on HTML and CSS Language as
recommended by CBSE. I am very thankful to S.E.B.A. for
introducing HTML and CSSLanguage, in our syllabus.

HTML is the acronym for Hyper Text Markup Language. It is a computer


language that is used for creating Web pages. It is a language for describing the
structure of a document. It defines a set of common styles for Web pages. In
this report I have tried to design a Web site on HTML on the topic
“India Tourism” containing six web pages including the home page. I have
created hyperlinks to link allthose web pages so that we can easily navigate
through the website. I also used all the possible HTMLTAGs and
ATTRIBUTEs that can be useful to develop this project.
Cascading Style Sheets, fondly referred to as CSS, is a simply designed
language intended to simplify the process of making web pages presentable.
CSS allows you to apply styles to web pages. More importantly, CSS enables
you to do this independently of the HTML that makes up each web page. It
describes how a webpage should look: it prescribes colours, fonts, spacing, and
much more. In short, you can make your website look however you want. CSS
lets developers and designers define how it behaves, including how elements are
positioned in the browser.
CODE-1

<html>
<head>
<title>Hospital</title>
</head>
<body bgcolor=Pink>
<h1>Welcome to Our Hospital</h1>
<p>Please make sure to sanitize and follow social distancing guidelines.</p>
<ul>
<li>ER Department</li>
<li>Cardiology Department</li>
<li>Pediatrics Department</li>
<li>Gastroenterology Department</li>
</ul>
</body>
</html>

CODE -2

<html>
<head>
<title>Hospital Facilities</title>
</head>
<body bgcolor=Aqua Blue>
<h1>Hospital Facilities</h1>
<ul>
<li>CT Scan</li>
<li>MRI</li>
<li>Blood Bank</li>
<li>Cardiology</li>
<li>Orthopedics</li>
</ul>
</body></html>
CODE 3 –

<html>
<head>
<title>Hospital Facilities</title>
<style>
body {font-family: Arial, sans-serif;}
.results {background-color:Aqua Blue;padding: 15px;margin:
15px ;border: 5px solid;}
</style>
</head>
<body>
<h1>Hospital Facilities</h1>
<ul>
<li>CT Scan</li>
<li>MRI</li>
<li>Blood Bank</li>
<li>Cardiology</li>
<li>Orthopedics</li>
</ul>
<h2>Treatment Results</h2>
<p>The patient's condition has significantly improved since treatment. We
would like to thank all our staff for their hard work and dedication.</p>

</body>
</html>

CODE 4-

<html>
<head>
<title>Hospital Opening Hours</title>
</head>
<body bgcolor=Aqua Blue>
<h1>Hospital Opening Hours</h1>
<H2> OPENED ALL 6 DAYS EXCEPT WEEKENDS</H2>
<ul>
<li>Monday: 9:00 AM - 5:00 PM</li>
<li>Tuesday: 9:00 AM - 5:00 PM</li>
<li>Wednesday: 9:00 AM - 5:30 PM</li>
<li>Thursday: 9:00 AM - 5:00 PM</li>
<li>Friday: 9:00 AM - 5:00 PM</li>
<li>Saturday: 9:00 AM - 1:00 PM</li>
<li>Sunday: Closed</li>
</ul>
</body>
</html>

CODE-5

<html>

<head>

<title>Hospital Online Facilities</title>

</head>

<body>

<h1>Hospital Online Facilities</h1>

<table>

<tr>

<td>Name:</td>

<td><input type="text"></td>

</tr>

<tr>

</tr>

<tr>

<td>Price:</td>

<td><input type="number" name="price" required></td><tr>


<td colspan="2"><input type="submit" value="Submit"></td> </tr></table>
</form></body></html>

OUTPUT-1

OUTPUT-2
OUTPUT-3

OUTPUT-4
OUTPUT-5

You might also like