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

MVPS’s

RAJARSHI SHAHU MAHARAJ POLYTECHNIC


NASHIK

DEPARTMENT OF SCIENCE AND HUMANITY

ACADEMIC YEAR 2023-24

“WEB PAGE DESIGNING (312004)”


“WEBSITE FOR CAR-SHOWROOM”

GUIDED BY:-
Prof. R. V. Shinde

Submitted By: -Group No. 3

SR NO ROLL NO ENROLLMENT NO STUDENT NAME EXAM SEAT NO


1 17 23611630427 Antara Hire
2 18 23611630428 Trupti Jadhav
3 19 23611630429 Roshan Jagtap
4 20 23611630430 Netra Jagzap
5 21 23611630431 Mayuri Khairnar
6 22 23611630432 Pranjal Khairnar
7 23 23611630433 Aditya Khokale
8 24 23611630434 Nishant Khule

MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 1 of 21


Seal of
Institute

MAHARASHTRA STATE BOARD OF TECHNICA EDUCATION

Certificate:

This is to certify that Mr./Ms.

Roll No. , of Second Semester of Diploma in Information


Technology of Institute MVPS’s Rajarshi Shahu Maharaj Polytechnic,
Nashik (Code: 1002) has successfully completed his micro-project in
Subject Web Page Designing 312004 for the academic year 2023 to 2024
as prescribed in the curriculum.
Enrollment no:
Place: Nashik
Exam seat no:
Date: ………….

Prof. R. V. Shinde Prof. T. K. Thange Prof. Prashant Patil


Course Teacher/Guide HOD-SH Principal

MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 2 of 21


ABSTRACT

This report outlines the development of a car showroom website using HTML. The
website aims to provide users with a seamless and interactive platform to explore
various car models, compare specifications, and make informed purchasing decisions.
The design emphasizes user experience, with intuitive navigation and visually
appealing interfaces. Through the utilization of HTML, the website offers
responsiveness across different devices, ensuring accessibility for a diverse range of
users. Additionally, the report discusses the implementation of key features such as
image galleries, and contact forms to enhance user engagement. Overall, the car
showroom website showcases the effective integration of HTML to create a dynamic
and engaging online platform for automotive enthusiasts and potential buyers alike.

Keywords: E-website, CSS, HTML, responsive website

MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 3 of 21


INDEX

Name of Chapter Page No.


Sr.
No.

1 INTRODUCTION 5

2 HTML TAGS 6

3 IMAGES OF E-WEBSITE 8-11

4 PROGRAM OF HOME PAGE 12-16

5 PROGRAM OF LOGIN FORM 17

6 PROGRAM OF CONTACT US PAGE 18

7 PROGRAM OF BOOKING FORM 19

8 PROGRAM OF BOOKING CONFIRMATION PAGE 20

9 CONCLUSION 21

10 REFERENCE 22

MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 4 of 21


INTRODUCTION

WHAT IS HTML?
The Hyper Text Markup Language or HTML is the standard markup language for documents
designed to be displayed in a web browser. It is often assisted by technologies such as Cascading
Style Sheets (CSS) and scripting languages such as JavaScript.
The first version of HTML was written by Tim Berners-Lee in 1993. Since then, there have been
many different versions of HTML. The first is HTML1.0, second is HTML 2.0, third is HTML
3.2, fourth is HTML 4.01, fifth is HTML 5, sixth is W3C HTML Validator.

WHAT IS CSS?
Cascading Style Sheets (CSS) is a stylesheet language used to describe the presentation of a
document written in HTML or XML (including XML dialects such as SVG, MathML or XHTML).
CSS describes how elements should be rendered on screen, on paper, in speech, or on other media

1994- Haykon Wium Lie proposed the idea of CSS.


1996- The first version of CSS was invented.

WHAT IS A WEB BROWSER?


A web browser is an application for accessing websites. When a user requests a web page from a
particular website, the browser retrieves its files from a web server and then displays the page on the
user's screen. Browsers are used on a range of devices, including desktops, laptops, tablets and
smartphones.

WHAT IS A WEBSITE?
A website (also written as a web site) is a collection of web pages and related content that is
identified by a common domain name and published on at least one web server. Websites are
typically dedicated to a particular topic or purpose, such as news, education, commerce,
entertainment or social networking.

WHAT IS A WEBPAGE?
A web page (or webpage) is a hypertext document on the World Wide Web. Web pages are delivered
by a web server to the user and displayed in a web browser.

MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 5 of 21


HTML TAGS
• HTML Documents

All HTML documents must start with a document type declaration: <!DOCTYPE html>. The
HTML document itself begins with <html> and ends with </html>.

• HTML <html> tag


The <html> tag represents the root of an HTML document.

• HTML Headings
HTML headings are defined with the <h1> to <h6> tags.
<h1> defines the most important heading. <h6> defines the least important heading. All the tags
should be closed
• HTML Paragraphs
HTML paragraphs are defined with the <p> tag and it needs to be closed it is denoted by </p>
• HTML Links
HTML links are defined with the <a> tag

• HTML meta tag


The <meta> tag defines metadata about an HTML document. Metadata is data (information) about
data.

• HTML style tag


The <style> tag is used to define style information (CSS) for a document.

• HTML button tag


The <button> tag defines a clickable button.

• HTML division tag


The <div> tag defines a division or a section in an HTML document.

• HTML input tag


The <input> tag specifies an input field where the user can enter data.

• HTML link tag


The <link> tag defines the relationship between the current document and an external resource.

• HTML span tag


The <span> tag is an inline container used to mark up a part of a text, or a part of a
document.

• HTML u tag
The <u> tag represents some text that is underlined.

MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 6 of 21


• HTML title tag
The <title> tag defines the title of the document. The <html> tag represents the root of an
HTML document.

• HTML b tag
The <b> tag represents the text as bold.

• HTML heading tags


The <h1> to <h6> tags are used to define HTML headings.

• HTML ul tag
The <ul> tag defines an unordered (bulleted) list.

MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 7 of 21


IMAGES OF E-WEBSITE
Home page:

MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 8 of 21


MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 9 of 21
Login Page:

CONTACT PAGE:

MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 10 of


21
Booking Form:

Booking Confirmed page:

MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 11 of


21
PROGRAM OF WEBPAGE OF HOME PAGE:

MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 12 of


21
MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 13 of
21
MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 14 of
21
MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 15 of
21
PROGRAM OF LOGIN FORM:

MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 16 of


21
PROGRAM OF CONTACT US PAGE:

MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 17 of


21
PROGRAM OF BOOKING FORM:

MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 18 of


21
PROGRAM OF BOOKING CONFIRMATION PAGE:

MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 19 of


21
CONCLUSION

Hence, we have studied that websites can be created by many languages here we used HTML and
CSS. Where HTML is a content carrying language and CSS is used to design the website. We learnt
many tags such as heading tags, block level tags image tag, division tag, span tag, text level tags,
learnt to add navigation bar, buttons, inserting text color, background color, opacity, fontsize, font-
family and many more. We learnt to link webpages to each other. learner will be able to create fully
responsive attractive, interactive, and creative webpages and websites using HTML and CSS.

MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 20 of


21
REFERENCE

HTML5: Up and Running by Mark Pilgrim


HTML5 Canvas by Steve Fulton
Introducing HTML5 by Remy and Bruce
git.com
github.com
stackoverflow.com
w3school.com
YOUTUBE

MVP’S RAJARSHI SHAHU MAHARAJ POLYTECHNIC, NASHIK Page 21 of


21

You might also like