Below is an explanation or description for developers who want to use our style, as well as how it is used.
Html is an interface that can be run in a browser, the main format of 'index.html'.
Example :<!DOCTYPE html> <html> <head> <!-- Your title web --> <title>Guide HTML | CusMeDroid<title> </head> <body> <h1>Title</h1> <p>Paragraph</p> <div>Integer Devision</div> </body> </html>
Great! you get it now Here i'am.
Css is a style builder on the display of tags in html, the format used 'style.css', you can put our style in the head of your index.
Example :<head> <link rel='stylesheet' type='text/css' href='https://cusmedroid.github.io/css/style.css'> </head>
By ClassName ex. class='orange'
By ClassName ex. class='orange-bg'
By ClassName ex. class='green-bg-img'
By ClassName ex. class='green-grad-bg'
By ClassName ex. class='green-grad-bg-btn'
By ClassName ex. class='padd-4'
By ClassName ex. class='marg-4'
By ClassName ex. class='radius-5'
By ClassName ex. class='size-12'
I'm using fonts from google, and you can paste this in the head.
Example :<head> <link rel='stylesheet' type='text/css' href='https://cusmedroid.github.io/css/style.css'> <!-- Include link fonts --> <link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Audiowide|Sofia|Trirong'> </head>
By ClassName ex. class='Audiowide'
I'm using icon from Fontawesome 4, and you can paste this in the head.
Example :<head> <link rel='stylesheet' type='text/css' href='https://cusmedroid.github.io/css/style.css'> <!-- Include link fonts --> <link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Audiowide|Sofia|Trirong'> <!-- Include link icon fontawesome --> <link rel='stylesheet' href='https://cusmedroid.github.io/fontawesome-4/css/font-awesome.min.css'> </head>
By ClassName ex. class='fa fa-cc-discover'
Great! you get it now Here i'am.
I'm using JS/Javascricpt from jQuery 3.6.0, and you can paste this in the head.
Example :<head> <link rel='stylesheet' type='text/css' href='https://cusmedroid.github.io/css/style.css'> <!-- Include link fonts --> <link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Audiowide|Sofia|Trirong'> <!-- Include link icon fontawesome --> <link rel='stylesheet' href='https://cusmedroid.github.io/fontawesome-4/css/font-awesome.min.css'> <!-- Include link jQuery 3.6.0 --> <script type='text/javascript' src='https://cusmedroid.github.io/js/jquery-3.6.0.min.js'></script> </head>
Great! you get it now Here i'am.