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

How to use perspective property in CSS?

This property is used to define how many pixels a 3D element is placed from the view. This property allows you to change the perspective on how 3D elements are viewed. This will only effect on 3D transformed elements. Whenever we define the perspective property for an element, it is the child elements that get … Read more

How many create cookies in JavaScript?

JavaScript Cookies Cookies are exposed as the cookie property of the Document object. This property is both readable and writeable. You can see Cookies in Google Chrome by following chrome://settings/content/cookies Creating Cookies When you assign a string to document.cookie, the browser parses it as a cookie and adds it to its list of cookies. There … Read more

History Object and Location Object in javascript?

History Object The History object is a read-only array of URL strings that shows where the user has been recently. Syntax: – window.history.property window.history.method Property length – It returns the number of URLs in the history list. Methods back ( ) – It loads the previous URL in the history list. forward ( ) – … Read more

How to use 2d transform property in CSS?

This property is used to apply a 2D or 3D transformation to an element. We can set below values: – translate() rotate() scale() skew() matrix() Ex:- div { transform: rotate(20deg); } translate( )– This method is used to move an element from its current position. Syntax: – transform: translateX(px) transform: translateY(px) transform: translate(Xpx, Ypx) Ex: … Read more

How to use display property in CSS?

This property is used to define how an element should display. Every HTML element has a default display value depending on what type of element it is. The default display value for most elements is block or inline. display properties use below – inline block flex inline-block inline-flex inline-table list-item run-in table table-row-group table-caption table-column-group … Read more

How to use Flex property in CSS?

This property is used to specify the length of the item, relative to the rest of the flexible items inside the same container. If the element is not a flexible item, the flex property has no effect. The flex property is a shorthand for the flex-grow, flex-shrink, and flex-basis properties. Syntax: – Selector { flex: … Read more

How to use box-sizing property in CSS?

The box-sizing property tells the browser what the sizing properties should include. We can set this property to content-box (default) or border-box. The box-sizing property is used to include the padding and border in an element’s total width and height. Ex:- div { box-sizing: border-box;} content-box- The width and height properties (and min/max properties) include … Read more