Pinki Project
Pinki Project
REPORT ON
VEHICLE RENTAL
MANAGEMENT
SYSTEM
UNDER GUIDENCE :
MRS.BAHAR SAINI
MRS.APARNA GARG
MR. I.B.NEGI
SUBMITTED BY:
JAGJEET SINGH
PROJECT
REPORT
ABSTRACT
CHAPTER TITLE
1 INTRODUCTION
2 SYSTEM ANALYSIS
3 SYSTEM DESIGN
4 CODING
5 TESTING
6 CONCLUSION
APPENDICES
RESUME
REFERENCES
INTRODUCTIO
N
CHAPTER 1
INTRODUCTION
MARKUP
HTML markup consists of several key components,
including those called tags (and their attributes),
character-based data types, character references and
entity references. HTML tags most commonly come in pairs
like <h1> and </h1>, although some represent empty
elements and so are unpaired, for example <img>. The first
tag in such a pair is the start tag, and the second is the end
tag (they are also called opening tags and closing tags).
Another important component is the HTML document type
declaration, which triggers standards mode rendering.
The following is an example of the classic "Hello, World!"
program, a common test employed for comparing
programming languages, scripting languages and markup
languages. This example is made using 9 source lines of
code:
<!DOCTYPE html>
<html>
<head>
<title>This is a title</title>
</head>
<body>
<p>Hello world!</p>
</body>
</html>
System Actors(User)
Admin
Registered users
Guest Users
Admin features
Admin login
Admin can Add New vehicle brand Details
Admin can Manage Contact us Query
Admin Can Manage Subscribers
Admin Can Change Password
Admin Dashboard has
PROCESSOR : PENTIUM IV
CLOCK SPEED : 2 GHZ
SYSTEM BUS : 32 BIT
RAM : 128 MB
HDD : 40GB
MONITOR : SVGA COLOR
KEY BOARD : 108 KEYS
MODEM : 56 KBPS
MOUSE : PS/2
FDD : 1.44 MB
CHAPTER 3
SYSTEM DESIGN
System design is the solution to the creation of a new system.
This phase is composed of several systems. This phase
focuses on the detailed implementation of the feasible
system. It emphasis on translating design specifications to
performance specification. System design has two phases of
development logical and physical design.
MODULE DESCRIPTION:
The system after careful analysis has been identified to
present with the following modules.
3.2.1 NORMALIZATION
3.3 FIGURES
User
Services
Fig 3.3.1 DFD FOR ACCESSING WEB PAGES
USER
Fig 3.3.3 DFD FOR STUDENT RECORD CREATIO
3.4 WEB FORM DESIGN
• TESTING OBJECTIVES:
There are several rules that can serve as testing objectives,
they are
Testing is a process of executing a program with the intent of
finding an error
A good test case is one that has high probability of finding an
undiscovered error.
A successful test is one that uncovers an undiscovered error.
• Testing Correctness
In our case all the modules were combined and given the test
data. The combined module works successfully with out any
side effect on other programs. Everything was found fine
working.
APPENDICES
REFRACTORING
CLICK ONCE
Clickonce make it easy to install applications and provide
ongoing updates (self-updating), rather than forcing to
distribute new versions of application, can just deploy the
portion of the application which has changed. In the .net
framework 1.0 and 1.1, href-exes were not able to solve
many deployment issues. Href-exes are also known as ''no-
touch deployment, or zero impact deployment''.
RESUME
www.c-sharpcorner.com
www.programmersheaven.com
www.w3school.com
LANGUAGE
DESCRIPTION
HTML Introduction
What is HTML?
HTML is the standard markup language for creating Web pages.
HTML Tags
HTML tags are element names surrounded by angle brackets:
Tip: The start tag is also called the opening tag, and the end tag the closing tag.
Web Browsers
The purpose of a web browser (Chrome, IE, Firefox, Safari) is to read HTML documents and
display them.
The browser does not display the HTML tags, but uses them to determine how to display the
document:
HTML Page Structure
<html>
<head>
<title>Page title</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>
Note: Only the content inside the <body> section (the white area above) is displayed in a
browser.
The <!DOCTYPE>
Declaration
The <!DOCTYPE> declaration represents the document type, and helps browsers to display
web pages correctly.
It must only appear once, at the top of the page (before any HTML tags).
The <!DOCTYPE> declaration is not case sensitive.
HTML Editors
Write HTML Using Notepad
or TextEdit
Web pages can be created and modified by using professional HTML editors.
However, for learning HTML we recommend a simple text editor like Notepad (PC) or
TextEdit (Mac).
Follow the four steps below to create your first web page with Notepad or TextEdit.
Open the Start Screen (the window symbol at the bottom left on your screen). Type
Notepad.
Windows 7 or earlier:
Also change some preferences to get the application to save files correctly. In Preferences >
Format > choose "Plain Text"
Then under "Open and Save", check the box that says "Ignore rich text commands in HTML
files".
<!DOCTYPE html>
<html>
<body>
</body>
</html>
Name the file "index.htm" and set the encoding to UTF-8 (which is the preferred encoding
for HTML files).
You can use either .htm or .html as file extension. There is no difference, it is up to you.
The HTML document itself begins with <html> and ends with </html>.
The visible part of the HTML document is between <body> and </body>.
Example
<!DOCTYPE html>
<html>
<body>
</body>
</html>
HTML Headings
HTML headings are defined with the <h1> to <h6> tags.
<h1> defines the most important heading. <h6> defines the least important heading:
Example
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
HTML Paragraphs
HTML paragraphs are defined with the <p> tag:
Example
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
HTML Links
HTML links are defined with the <a> tag:
Example
<a href="https://www.w3schools.com">This is a link</a>
HTML Images
HTML images are defined with the <img> tag.
The source file (src), alternative text (alt), width, and height are provided as attributes:
Example
<img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142">
HTML Elements
HTML Elements
An HTML element usually consists of a start tag and end tag, with the content inserted in
between:
HTML elements with no content are called empty elements. Empty elements do not have an
end tag, such as the <br> element (which indicates a line break).
Example
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
Example Explained
<html>
<body>
</body>
</html>
The element content is two other HTML elements (<h1> and <p>).
<body>
</body>
Example
<html>
<body>
<p>This is a paragraph
<p>This is a paragraph
</body>
</html>
The example above works in all browsers, because the closing tag is considered optional.
Never rely on this. It might produce unexpected results and/or errors if you forget the
end tag.
<br> is an empty element without a closing tag (the <br> tag defines a line break).
Empty elements can be "closed" in the opening tag like this: <br />.
HTML5 does not require empty elements to be closed. But if you want stricter validation, or
if you need to make your document readable by XML parsers, you must close all HTML
elements properly.
The HTML5 standard does not require lowercase tags, but W3C recommends lowercase in
HTML, and demands lowercase for stricter document types like XHTML.
HTML Attributes
Attributes provide additional information about HTML elements.
HTML Attributes
All HTML elements can have attributes
Attributes provide additional information about an element
Attributes are always specified in the start tag
Attributes usually come in name/value pairs like: name="value"
Example
<a href="https://www.w3schools.com">This is a link</a>
The src Attribute
Example
<img src="img_girl.jpg">
The image size is specified in pixels: width="500" means 500 pixels wide.
You will learn more about images in our HTML Images chapter.
The value of the attribute can be read by screen readers. This way, someone "listening" to the
webpage, e.g. a blind person, can "hear" the element.
Example
<img src="img_girl.jpg" alt="Girl with a jacket">
Example
Example
<p style="color:red">I am a paragraph</p>
Declaring a language is important for accessibility applications (screen readers) and search
engines:
<!DOCTYPE html>
<html lang="en-US">
<body>
...
</body>
</html>
The first two letters specify the language (en). If there is a dialect, use two more letters (US).
The title Attribute
Here, a title attribute is added to the <p> element. The value of the title attribute will be
displayed as a tooltip when you mouse over the paragraph:
Example
<p title="I'm a tooltip">
This is a paragraph.
</p>
The title attribute can be written with uppercase or lowercase like title or TITLE.
W3C recommends lowercase in HTML, and demands lowercase for stricter document types
like XHTML.
Example
<a href=https://www.w3
schools.com>
Sometimes it is necessary to use quotes. This example will not display the title attribute
correctly, because it contains a space:
Example
<p title=About W3Schools>
HTML Headings
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
HTML Headings
Headings are defined with the <h1> to <h6> tags.
<h1> defines the most important heading. <h6> defines the least important heading.
Example
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
Note: Browsers automatically add some white space (a margin) before and after a heading.
Headings Are Important
Search engines use the headings to index the structure and content of your web pages.
Users skim your pages by its headings. It is important to use headings to show the document
structure.
<h1> headings should be used for main headings, followed by <h2> headings, then the less
important <h3>, and so on.
Note: Use HTML headings for headings only. Don't use headings to make text BIG or bold.
Bigger Headings
Each HTML heading has a default size. However, you can specify the size for any heading
with the style attribute:
Example
<h1 style="font-size:60px;">Heading 1</h1>
HTML Horizontal Rules
The <hr> tag defines a thematic break in an HTML page, and is most often displayed as a
horizontal rule.
The <hr> element is used to separate content (or define a change) in an HTML page:
Example
<h1>This is heading 1</h1>
<p>This is some text.</p>
<hr>
<h2>This is heading 2</h2>
<p>This is some other text.</p>
<hr>
The <head> element is a container for metadata. HTML metadata is data about the HTML
document. Metadata is not displayed.
The <head> element is placed between the <html> tag and the <body> tag:
Example
<!DOCTYPE html>
<html>
<head>
<title>My First HTML</title>
<meta charset="UTF-8">
</head>
<body>
.Note: Metadata typically define the document title, character set, styles, links, scripts, and
other meta information.
Have you ever seen a Web page and wondered "Hey! How did they do that?"
To find out, right-click in the page and select "View Page Source" (in Chrome) or "View
Source" (in IE), or similar in other browsers. This will open a window containing the HTML
source code of the page.
Right-click on an element (or a blank area), and choose "Inspect" or "Inspect Element" to see
what elements are made up of (you will see both the HTML and the CSS). You can also edit
the HTML or CSS on-the-fly in the Elements or Styles panel that opens.
You will learn more about HTML tags and attributes in the next chapters of this tutorial.
Tag Description
<html> Defines the root of an HTML document
<body> Defines the document's body
<head> A container for all the head elements (title, scripts, styles, meta information, and more)
<h1> to <h6> Defines HTML headings
<hr> Defines a thematic change in the content
HOMEPAGE
<html>
<head>
<title> Vechile Rental Management</title>
<body bgcolor ="yellow">
<p><center>
<h1><b><i><u><font color="#FFFFFF">Vechile Rental Management
</font></u></i></b></h1></p><br><br>
<h2><b><i><font color="#000000">Vechiles are available here for rent from 2
wheeler to 4 wheeler, from heavy to light weight </font></i></b></h2></p>
<img src="img_4781.jpg" height="200" width="250" border="10">
<img src="New_Vehicle_22249.gif" height="200" width="250" border="10">
<img src="dc-Cover-825di04jl8p8hugdmpd7lb03u7-20180116071141.Medi.jpeg"
height="200" width="250" border="10">
<a href="p.html">Main Page</a><br>
<a href="p1.html">W.T</a>
</body>
</html>
SECOND WEBPAGE
<html>
<head>
<title> Vechile Rental Management</title>
<body bgcolor ="yellow">
<p><center>
<h1><b><i><u><font color="#0000FF"> Types of Vechile for
Rent</font></u></i></b></h1></p><br><br>
<h2><b><i><font color="#008000">On the basis of wheeles
</font></i></b></h2></p>
<h2><b><i><font color="#008000">On the basis of weight
</font></i></b></h2></p>
<img src="img_4781.jpg" height="200" width="250" border="10">
<select name="On the basis of wheeles">
<option value="2 wheelers">2 wheelers
<option value="4 wheelers">4 wheeler
</select><b>On the basis of wheeles <b>
<img src="dc-Cover-825di04jl8p8hugdmpd7lb03u7-20180116071141.Medi.jpeg"
height="200" width="250" border="10">
<select name="On the basis of weight">
<option value=" light weight">light weight
<option value="Heavy weight">Heavy weight
</select><b>On the basis of weight<b>
<a href="p.html">Main Page</a><br>
<a href="p1.html">W.T</a><br>
<a href="p2.html">T2W</a>
<a href="p3.html">T4W</a>
<a href="p4.html">T.H.W</a><br>
<a href="p5.html">T.L.W</a><br>
<a href="p6.html">T.CY</a>
<a href="p7.html">T.CA</a>
<a href="p8.html">T.BI</a>
<a href="p9.html">T.BU</a>
<a href="p10.html">T.T</a>
<a href="p11.html">T.SC</a><br>
<a href="p12.html">FORM</a>
</body>
</html>
THIRD WEBPAGE
<html>
<head>
<title> Vechile Rental Management</title>
<body bgcolor ="yellow">
<p><center>
<h1><b><i><u><font color="#800000"> Types of 2 wheeler Vechile for
Rent</font></u></i></b></h1></p><br><br>
<h2><b><i><font color="#00FF00">Bike </font></i></b></h2></p>
<h2><b><i><font color="#00FF00">Cycle </font></i></b></h2></p>
<h2><b><i><font color="#00FF00">Scooty </font></i></b></h2></p>
<img src="royal-enfield-bullet-350-front-view.jpg" height="300" width="350"
border="10">
<select name="2 wheelers">
<option value="Bike">Bike
<option value="Cycle">Cycle
<option value="Scooty">Scooty
</select><b>2 wheelers <b>
<a href="p.html">Main Page</a><br>
<a href="p1.html">W.T</a><br>
<a href="p2.html">T2W</a>
<a href="p3.html">T4W</a>
<a href="p4.html">T.H.W</a><br>
<a href="p5.html">T.L.W</a><br>
<a href="p6.html">T.CY</a>
<a href="p7.html">T.CA</a>
<a href="p8.html">T.BI</a>
<a href="p9.html">T.BU</a>
<a href="p10.html">T.T</a>
<a href="p11.html">T.SC</a><br>
<a href="p12.html">FORM</a>
</body>
</html>
FOURTH WEBPAGE
<html>
<head>
<title> Vechile Rental Management</title>
<body bgcolor ="yellow">
<p><center>
<h1><b><i><u><font color="#808000"> Types of 4 wheeler Vechile for
Rent</font></u></i></b></h1></p><br><br>
<h2><b><i><font color="#800080">Car </font></i></b></h2></p>
<h2><b><i><font color="#800080">Bus </font></i></b></h2></p>
<h2><b><i><font color="#800080">Truck </font></i></b></h2></p>
<img src="dc-Cover-825di04jl8p8hugdmpd7lb03u7-20180116071141.Medi.jpeg"
height="300" width="350" border="10">
<select name="4 wheelers">
<option value="Car">Car
<option value="Bus">Bus
<option value="Truck">Truck
</select><b>4 wheelers <b>
<a href="p.html">Main Page</a><br>
<a href="p1.html">W.T</a><br>
<a href="p2.html">T2W</a>
<a href="p3.html">T4W</a>
<a href="p4.html">T.H.W</a><br>
<a href="p5.html">T.L.W</a><br>
<a href="p6.html">T.CY</a>
<a href="p7.html">T.CA</a>
<a href="p8.html">T.BI</a>
<a href="p9.html">T.BU</a>
<a href="p10.html">T.T</a>
<a href="p11.html">T.SC</a><br>
<a href="p12.html">FORM</a>
</body>
</html>
FIFTH WEBPAGE
<html>
<head>
<title> Vechile Rental Management</title>
<body bgcolor ="yellow">
<p><center>
<h1><b><i><u><font color="#000080"> Types of Heavy Vechile for
Rent</font></u></i></b></h1></p><br>
<h2><b><i><font color="#FF0000">Bus </font></i></b></h2></p>
<h2><b><i><font color="#FF0000">Truck </font></i></b></h2></p>
<img src="1451939922-2731.jpg" height="300" width="350" border="10">
<select name="Heavy weight">
<option value="Bus">Bus
<option value="Truck">Truck
</select><b>Heavy weight<b>
<a href="p.html">Main Page</a><br>
<a href="p1.html">W.T</a><br>
<a href="p2.html">T2W</a>
<a href="p3.html">T4W</a>
<a href="p4.html">T.H.W</a><br>
<a href="p5.html">T.L.W</a><br>
<a href="p6.html">T.CY</a>
<a href="p7.html">T.CA</a>
<a href="p8.html">T.BI</a>
<a href="p9.html">T.BU</a>
<a href="p10.html">T.T</a>
<a href="p11.html">T.SC</a><br>
<a href="p12.html">FORM</a>
</body>
</html>
SIXTH WEBPAGE
<html>
<head>
<title> Vechile Rental Management</title>
<body bgcolor ="yellow">
<p><center>
<h1><b><i><u><font color="#00FFFF"> Types of light Vechile for
Rent</font></u></i></b></h1></p><br>
<h2><b><i><font color="#000000">Car </font></i></b></h2></p>
<h2><b><i><font color="#000000">Bike</font></i></b></h2></p>
<h2><b><i><font color="#000000">Cycle</font></i></b></h2></p>
<h2><b><i><font color="#000000">Scooty</font></i></b></h2></p>
<img src="Conquer-Indias-Roads_-4-Bikes-That-Are-Perfect-For-The-Job_4-
570x350.jpg" height="300" width="350" border="10">
<select name="Light weight">
<option value="Car">Car
<option value="Bike">Bike
<option value="Cycle">Cycle
<option value="Scooty">Scooty
</select><b>Light weight<b>
<a href="p.html">Main Page</a><br>
<a href="p1.html">W.T</a><br>
<a href="p2.html">T2W</a>
<a href="p3.html">T4W</a>
<a href="p4.html">T.H.W</a><br>
<a href="p5.html">T.L.W</a><br>
<a href="p6.html">T.CY</a>
<a href="p7.html">T.CA</a>
<a href="p8.html">T.BI</a>
<a href="p9.html">T.BU</a>
<a href="p10.html">T.T</a>
<a href="p11.html">T.SC</a><br>
<a href="p12.html">FORM</a>
</body>
</html>
SEVENTH WEBPAGE
<html>
<head>
<title> Vechile Rental Management</title>
<body bgcolor ="yellow">
<p><center>
<h1><b><i><u><font color="#00FFFF"> Types of light Vechile for
Rent</font></u></i></b></h1></p><br>
<h2><b><i><font color="#000000">Car </font></i></b></h2></p>
<h2><b><i><font color="#000000">Bike</font></i></b></h2></p>
<h2><b><i><font color="#000000">Cycle</font></i></b></h2></p>
<h2><b><i><font color="#000000">Scooty</font></i></b></h2></p>
<img src="Conquer-Indias-Roads_-4-Bikes-That-Are-Perfect-For-The-Job_4-
570x350.jpg" height="300" width="350" border="10">
<select name="Light weight">
<option value="Car">Car
<option value="Bike">Bike
<option value="Cycle">Cycle
<option value="Scooty">Scooty
</select><b>Light weight<b>
<a href="p.html">Main Page</a><br>
<a href="p1.html">W.T</a><br>
<a href="p2.html">T2W</a>
<a href="p3.html">T4W</a>
<a href="p4.html">T.H.W</a><br>
<a href="p5.html">T.L.W</a><br>
<a href="p6.html">T.CY</a>
<a href="p7.html">T.CA</a>
<a href="p8.html">T.BI</a>
<a href="p9.html">T.BU</a>
<a href="p10.html">T.T</a>
<a href="p11.html">T.SC</a><br>
<a href="p12.html">FORM</a>
</body>
</html>
<html>
EIGHT WEBPAGE
<head>
<title> Vechile Rental Management</title>
<body bgcolor ="yellow">
<p><center>
<h1><b><i><u><font color="#FF0000">Types of Car
</font></u></i></b></h1></p><br><br>
<h2><b><i><font color="#008000">Sedan </font></i></b></h2></p>
<img src="REN0886_Sedan_Zen_ColourPicker_Pearl-White.jpg" height="100"
width="150" border="10">
<img src="b6f32d4de9577a1ea5013924be3879b9.png" height="100" width="150"
border="10">
<img src="cc_2018HOC010002_01_640_BE.jpg" height="100" width="150"
border="10">
<img src="cc_2017hoc010016_01_640_bk.jpg" height="100" width="150"
border="10">
<h2><b><i><font color="#008000">MPV </font></i></b></h2></p>
<img src="pepperinnova.jpg" height="100" width="150" border="10">
<img src="innova-luxury-car-on-rent-500x500.jpg" height="100" width="150"
border="10">
<img src="15_2_2014_16_49_55_uhhi8s0keo7kj3l651shb348j4_pbwnyh4rhd.jpg"
height="100" width="150" border="10">
<img src="asialova1-29.jpg" height="100" width="150" border="10">
<h2><b><i><font color="#008000">SUV </font></i></b></h2></p>
<img src="70fdca86bd47e1b4781031de30fa6b2ax.jpg" height="100" width="150"
border="10">
<img src="13815f94b18a4d0b332e9be6c6f68a1d.jpg" height="100" width="150"
border="10">
<img src="kfz50573326_dsc_7382.jpg" height="100" width="150" border="10">
<img src="lexus-rx-2015-wallpaper-3.jpg" height="100" width="150"
border="10">
<h2><b><i><font color="#008000">Convertible </font></i></b></h2></p>
<img src="bmw_2series_convertible.jpg" height="100" width="150"
border="10">
<img src="mini_convertible.jpg" height="100" width="150" border="10">
<img src="2013-Jaguar-F-Type-1-1024x681.jpg" height="100" width="150"
border="10">
<img src="2017-drive-car-of-the-year-finalist-mercedes-benz-c-class-
cabriolet-207.jpg" height="100" width="150" border="10">
<a href="p.html">Main Page</a><br>
<a href="p1.html">W.T</a><br>
<a href="p2.html">T2W</a>
<a href="p3.html">T4W</a>
<a href="p4.html">T.H.W</a><br>
<a href="p5.html">T.L.W</a><br>
<a href="p6.html">T.CY</a>
<a href="p7.html">T.CA</a>
<a href="p8.html">T.BI</a>
<a href="p9.html">T.BU</a>
<a href="p10.html">T.T</a>
<a href="p11.html">T.SC</a><br>
<a href="p12.html">FORM</a>
</body>
</html>
<html>
NINTH WEBPAGE
<head>
<title> Vechile Rental Management</title>
<body bgcolor ="yellow">
<p><center>
<h1><b><i><u><font color="#0000FF">Types of
Bikes</font></u></i></b></h1></p><br><br>
<h2><b><i><font color="#800000">Choppers </font></i></b></h2></p>
<img src="avantura-choppers-pravega.jpg" height="100" width="150"
border="10">
<img src="custom-chopper-bike-3d-model-max-obj-3ds-fbx-c4d-lwo-lw-lws.jpg"
height="100" width="150" border="10">
<img src="lineup-wideglide.png" height="100" width="150" border="10">
<img src="2f69256005daee80164ead038f2648de.jpg" height="100" width="150"
border="10">
<h2><b><i><font color="#800000">Cruisers </font></i></b></h2></p>
<img src="avantura-rudra.jpg" height="100" width="150" border="10">
<img src="17966097_771505369670514_2732524544247981607_o-1024x853.jpg"
height="100"custom-chopper-bike-3d-model-max-obj-3ds-fbx-c4d-lwo-lw-lws
width="150" border="10">
<img src="crusier.jpg" height="100" width="150" border="10">
<img src="$_86.jpg" height="100" width="150" border="10">
<h2><b><i><font color="#800000">bullets </font></i></b></h2></p>
<img src="royal-enfield-500cc-classic-by-rajputana-customs-o.jpg"
height="100" width="150" border="10">
<img src="3b1b9ed0d550d45691c3e12fc5db208b.jpg" height="100" width="150"
border="10">
<img src="da371fb062ca239e6d3a4a61737c8d6e.jpg" height="100" width="150"
border="10">
<img src="1996-Royal-Enfield-Bullet-350---4000-kms-driven-in-Pathr.png"
height="100" width="150" border="10">
<h2><b><i><font color="#800000">sports </font></i></b></h2></p>
<img src="2018-KTM-RC200-in-Black.jpg" height="100" width="150"
border="10">
<img src="yamaha_r6_sports_bike_3717.jpg" height="100" width="150"
border="10">
<img src="ducati_super_sport.jpg" height="100" width="150" border="10">
<img src="Ducati+1098s+Fastest-heavy-bike.jpg" height="100" width="150"
border="10">
<a href="p.html">Main Page</a><br>
<a href="p1.html">W.T</a><br>
<a href="p2.html">T2W</a>
<a href="p3.html">T4W</a>
<a href="p4.html">T.H.W</a><br>
<a href="p5.html">T.L.W</a><br>
<a href="p6.html">T.CY</a>
<a href="p7.html">T.CA</a>
<a href="p8.html">T.BI</a>
<a href="p9.html">T.BU</a>
<a href="p10.html">T.T</a>
<a href="p11.html">T.SC</a><br>
<a href="p12.html">FORM</a>
</body>
</html>
<html>
TENTH WEBPAGE
<head>
<title> Vechile Rental Management</title>
<body bgcolor ="yellow">
<p><center>
<h1><b><i><u><font color="#808000">Types of Buses
</font></u></i></b></h1></p><br><br>
<h2><b><i><font color="#800080">Intercity </font></i></b></h2></p>
<img src="12-1478932737-volvo-9400-bus-1.jpg" height="100" width="150"
border="10">
<img src="7582032043450829.jpg" height="100" width="150" border="10">
<img src="new-public-bus-services.jpg" height="100" width="150"
border="10">
<img src="2014JYNKlpUO5n_716X330.jpg" height="100" width="150" border="10">
<h2><b><i><font color="#800080">Urban </font></i></b></h2></p>
<img src="dscn0073.jpg" height="100" width="150" border="10">
<img src="dscf2755.jpg" height="100" width="150" border="10">
<img src="SAM_0102-e1348711848667.jpg" height="100" width="150"
border="10">
<img
src="mercedes_benz__o_404_rhd_15_r_air__v8_engine_381hp__euro_2_1998_1_lgw.
jpg" height="100" width="150" border="10">
<h2><b><i><font color="#800080">Double decker </font></i></b></h2></p>
<img src="201799-double-decker-bus-ttc.jpg" height="100" width="150"
border="10">
<img src="26458124171_bb3d227325_b.jpg" height="100" width="150"
border="10">
<img src="County-Connection-Hybrid-Electric-Bus-1024x680.jpg" height="100"
width="150" border="10">
<img src="32334578216_1daf5e8254_b.jpg" height="100" width="150"
border="10">
<h2><b><i><font color="#800080">Volvo buses </font></i></b></h2></p>
<img src="Volvo-9900-2.jpg" height="100" width="150" border="10">
<img src="1860x1050-9700-teaser-USA-2016-teaser2.jpg" height="100"
width="150" border="10">
<img src="1860x1050-Volvo-9900-Kortrijk-Edition-2017-newsintro.jpg"
height="100" width="150" border="10">
<img src="9900-ocean-race-3D-model_0.jpg" height="100" width="150"
border="10">
<a href="p.html">Main Page</a><br>
<a href="p1.html">W.T</a><br>
<a href="p2.html">T2W</a>
<a href="p3.html">T4W</a>
<a href="p4.html">T.H.W</a><br>
<a href="p5.html">T.L.W</a><br>
<a href="p6.html">T.CY</a>
<a href="p7.html">T.CA</a>
<a href="p8.html">T.BI</a>
<a href="p9.html">T.BU</a>
<a href="p10.html">T.T</a>
<a href="p11.html">T.SC</a><br>
<a href="p12.html">FORM</a>
</body>
</html>
ELEVENTH WEBPAGE
<html>
<head>
<title> Vechile Rental Management</title>
<body bgcolor ="yellow">
<p><center>
<h1><b><i><u><font color="#000000">Types of Truck
</font></u></i></b></h1></p><br><br>
<h2><b><i><font color="#FFFFFF">Flatbed </font></i></b></h2></p>
<img src="Rent-A-Truck-And-Flatbed.jpg" height="100" width="150"
border="10">
<img src="1423647_3945_159_0001-nowater.jpg" height="100" width="150"
border="10">
<img src="648100_1.jpg" height="100" width="150" border="10">
<img src="flatbed-trailers-1511845581-3482669.jpg" height="100" width="150"
border="10">
<h2><b><i><font color="#FFFFFF">Box </font></i></b></h2></p>
<img src="Tata+LPK_3118_TC+FBV-Box-160915181915328.jpg" height="100"
width="150" border="10">
<img src="trucks-on-national-highway-pune-maharashtra-india-asia-
GD5HT3.jpg" height="100" width="150" border="10">
<img src="24-foot-box-truck-weight-limit-box-truck-studio-full-home-
improvement-ideas-india-smart-home-ideas-magazine.jpg" height="100"
width="150" border="10">
<img src="lorry-cabin-with-wooden-body-250x250.jpg" height="100"
width="150" border="10">
<h2><b><i><font color="#FFFFFF">Dump </font></i></b></h2></p>
<img src="mercedes-benz-mpiii-4141-e5-8x4-m,26116.jpg" height="100"
width="150" border="10">
<img src="mercedes-benz-arocs-3258-tippb,b8e8456a.jpg" height="100"
width="150" border="10">
<img src="mercedes-benz-arocs-3258-tippb,b8e8456a (2).jpg" height="100"
width="150" border="10">
<img src="truck-dump-truckMERCEDES-BENZ-Actros-4144-AK-4-Achs-
Muldenkipper---1534415549502332243_big--18081613322880686300.jpg"
height="100" width="150" border="10">
<h2><b><i><font color="#FFFFFF">Tank </font></i></b></h2></p>
<img src="imag-500x500.jpg" height="100" width="150" border="10">
<img src="ashok-leyland-2516-tanker-500x500.jpg" height="100" width="150"
border="10">
<img src="mahindra-navistar-mn-31-8x2-6c-m-bs-iii-tanker-500x500.jpg"
height="100" width="150" border="10">
<img src="tank-truck-250x250.jpg" height="100" width="150" border="10">
<a href="p.html">Main Page</a><br>
<a href="p1.html">W.T</a><br>
<a href="p2.html">T2W</a>
<a href="p3.html">T4W</a>
<a href="p4.html">T.H.W</a><br>
<a href="p5.html">T.L.W</a><br>
<a href="p6.html">T.CY</a>
<a href="p7.html">T.CA</a>
<a href="p8.html">T.BI</a>
<a href="p9.html">T.BU</a>
<a href="p10.html">T.T</a>
<a href="p11.html">T.SC</a><br>
<a href="p12.html">FORM</a>
</body>
</html>
TWELWETH WEBPAGE
<html>
<head>
<title> Vechile Rental Management</title>
<body bgcolor ="yellow">
<p><center>
<h1><b><i><u><font color="#008000">Types of Scooty
</font></u></i></b></h1></p><br><br>
<h2><b><i><font color="#FF00FF">Honda dio </font></i></b></h2></p>
<img src="honda-dio-1504252609.jpeg" height="100" width="150" border="10">
<img src="honda-grazia-1510146732.png" height="100" width="150"
border="10">
<img src="home-bg.jpg" height="100" width="150" border="10">
<img
src="honda_dio_2012_petrol_honda_dio_110cc_2012_7100073523198452926.jpg"
height="100" width="150" border="10">
<h2><b><i><font color="#FF00FF">Tvs scooty streak </font></i></b></h2></p>
<img src="925104338s.jpg" height="100" width="150" border="10">
<img src="scooty-streak-250x250.jpg" height="100" width="150" border="10">
<img src="2016-tvs-scooty-pep-white-whacky-collection-original-
imaeendcrvkmgkzd.jpeg" height="100" width="150" border="10">
<img src="tvs-scooty-pep-plus-accessory-pack-insurance-and-rto-best-on-
road-price-deals-in-india-auto-scooters-tvs-motors-coimbatore-rs-99900-
convenience-fee-on-road-price-rs54259-2_480x480.png" height="100"
width="150" border="10">
<h2><b><i><font color="#FF00FF">Honda activa 4g </font></i></b></h2></p>
<img src="silver.jpg" height="100" width="150" border="10">
<img src="honda-aviator-pearl-amazing-white.png" height="100" width="150"
border="10">
<img src="honda.jpg" height="100" width="150" border="10">
<img src="Honda activa 4g front.jpg" height="100" width="150" border="10">
<h2><b><i><font color="#FF00FF">Vespa elegante 150 </font></i></b></h2></p>
<img src="v-elegante-150_600x300.jpg" height="100" width="150" border="10">
<img src="piaggio-vespa-vxl-125.jpg" height="100" width="150" border="10">
<img src="vespa-elegante.jpg" height="100" width="150" border="10">
<img src="vespa-vxl-125-500x500.png" height="100" width="150" border="10">
<a href="p.html">Main Page</a><br>
<a href="p1.html">W.T</a><br>
<a href="p2.html">T2W</a>
<a href="p3.html">T4W</a>
<a href="p4.html">T.H.W</a><br>
<a href="p5.html">T.L.W</a><br>
<a href="p6.html">T.CY</a>
<a href="p7.html">T.CA</a>
<a href="p8.html">T.BI</a>
<a href="p9.html">T.BU</a>
<a href="p10.html">T.T</a>
<a href="p11.html">T.SC</a><br>
<a href="p12.html">FORM</a>
</body>
</html>
THIRTHEENTH
WEBPAGE
<html>
<head>
<title> Vechile Rental Management</title>
<body bgcolor ="yellow">
<p><center>
<h1><b><i><u><font color="#FFFFFF">Vechile Rental form
</font></u></i></b></h1></p><br><br>
<form></center>
Name
<input type="Text"name="text"value="enter the text"><br>
Ph.no
<input type="Text"name="number"value="enter the no"><br>
Aadhar card number
<input type="Text"name="number"value="enter the no"><br>
Address
<input type="Text"name="address" maxlength ="30"><br>
<u>Select the gender</u><br>
<input type="radio"name="gender"value="male">male<br>
<input type="radio"name="gender"value="female">female<br>
<u>Select the wheeler</u><br>
<input type="radio"name="wheeler"value="2 wheeler">2 wheeler<br>
<input type="radio"name="wheeler"value="4 wheeler">4 wheeler<br>
<u>Select the wheeler</u><br>
<input type="radio"name="wheeler"value="light weight">light weight<br>
<input type="radio"name="wheeler"value="heavy weight">heavy weight<br>
Issued date
<input type="Text"name="number"value="enter the issued date"><br>
Return date
<input type="Text"name="number"value="enter the return date"><br>
<input type="button"name="submit"value="submit"><br>
<a href="p.html">Main Page</a><br>
<a href="p1.html">W.T</a><br>
<a href="p2.html">T2W</a>
<a href="p3.html">T4W</a>
<a href="p4.html">T.H.W</a><br>
<a href="p5.html">T.L.W</a><br>
<a href="p6.html">T.CY</a>
<a href="p7.html">T.CA</a>
<a href="p8.html">T.BI</a>
<a href="p9.html">T.BU</a>
<a href="p10.html">T.T</a>
<a href="p11.html">T.SC</a><br>
<a href="p12.html">FORM</a>
</body>
</html>
OUTPU
TS
HOME PAGE
SECOND
WEBPAGE
THIRD WEBPAGE
FOURTH
WEBPAGE
FIFTH WEBPAGE
SIXTH WEBPAGE
SEVENTH
WEBPAGE
EIGHT WEBPAGE
NINTH
WEBPAGE
TENTH
WEBPAGE
ELEVENTH
WEBPAGE
TWELWETH
WEBPAGE
THIRTHEENTH
WEBPAGE
BIBLOGRAPHY
THESE ARE THE FOLLOWING LINKS WHICH
ASSIST ME AT EACH AND EVERY STEP IN
COMPLETING. THIS PROJECT WITHOUT THEM I
WAS NOT BE ABLE TO FINISH THIS IMPORTANT
PROJECT: -
BOOKS
MASTERAS OF HTML
BASIC OF HTML
TAGS OF HTML