MOTOSHARE 🚗🏍️
Turning Idle Vehicles into Shared Rides & Earnings

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Owners earn. Renters ride.
🚀 Everyone wins.

Start Your Journey with Motoshare

HTML: Align Tag

Center – Aligns the whole text to the center of the web page ……….. align = “center”. Left – Aligns the whole text to the left side of the web page …………. align = “left”. Right – Aligns the whole text to the right side of the web page ……….. align = “right”. Justify – … Read more

HTML tag & tag

HTML <sub> tag A subscript is a text that appears smaller than a regular text. The <sub>….. </sub> tag is used to create a subscript on a web page. HTML <sup> tag A Superscript is a text that appears smaller in size above the regular text. The <sup> …… </sup> tag is used to create … Read more

HTML: Paragraph Tag

The <p> tag is used to create new paragraph on web page. It has a closing tag </p> which is optional because a paragraph automatically ends when we start another paragraph. <p>……………………………….. </p> Note:- Number of line in a paragraph depends on the size of web browser window. If we resize the browser windows, the … Read more

HTML: Heading tag

Heading defines the format and structure of a document. There are six heading tag: – <h1>…………….. </h1> <h2>…………….. </h2> <h3>…………….. </h3> <h4>…………….. </h4> <h5>…………….. </h5> <h6>…………….. </h6> Any text inside these tags is displayed differently depending on the heading number. Note : – <h1>……………. </h1> is largest heading tag and <h6>………… </h6> is smallest. Heading … Read more

Title Tag

The contents of the <title> element are either shown in the top of the browser, above where you usually type in the URL of the page you want to visit, or on the tab for that page (if your browser uses tabs to allow you to view multiple pages at the same time). <title> is … Read more

HTML Tag

<HTML>is a starting tag. To delimit the text inside, add a closing tag by adding a forward slash “/” to the starting tag. Most but not all tags have a closing tag. It is necessary to write the code for an HTML page between <HTML> and <HTML>. This <HTML> tells the browser is ‘this is … Read more

Head Tag

Before the element you will often see a element. This contains information about the page, rather than information that is shown within the main part of the browser. You will usually find a element inside the <head> element. <head> is opening head tag and </head> is closing head tag.</p>