Learn More This code allow you to declare a color inside html,css and javascript code. Basic color: “black”, “white”, “gray”, “silver”, “maroon”, “red”, “purple”, “fushsia”, “green”, “lime”, “olive”, “yellow”, “navy”, “blue”, “teal”, and “aqua”. Examples: Example red ColorExample white ColorExample blue ColorExample green Color Background color example: Example background Color black hex code color – …
Category Archives: html
html img
Learn More html img tag allow you to put an image inside html code. Attributes: alt – Allow you to declare keywords inside image for “SEO”. height and width – Allow you to declare width and height to your image. More info about “html img” here –https://www.w3schools.com/tags/tag_img.asp More html tutorial – http://omzas.com/html/
href a
Learn More “href a” allow you to insert a link inside a text or object and make it clickable. Google Website You can put the link inside image like this code: You can put a phone number inside a text and redirect to your phone dialer(work only in mobile). +88888888 You can scroll your page …
Form
Learn More A form html is used to collect user data and send the data to the server . You need to declare in the tag “form” an attribute called “action” and then declare to path to your php file. To pass the data from the input text to the php file you should declare …
Button
Learn More Browsers Support: All. autofocus: Automatically get focus when the page loads. disabled Disables the button. name Declaring a name for the button.(For php usage). type Declaring a the type of the button. type = “button” – Simple button for any use(for javascript). type =”submit” – Send the form. type =”clear” – Clear the …
Table
Learn More A simple Table in html. “border = 1” – Defining a border and the thick of the border that equals to 1. <thead> – Presenting the header of the table. <tbody> – Presenting the body of the table. <tr> – The column of the table. <th> – The title of the column. <td> …
Blink
Learn More Browsers Support: Chrome,Firefox,Safari,Opera.. Blink turn a simple text to blink text.
iframe
Learn More Browser Support: Chrome,Firefox,Edge,Safari,Opera. Iframe create a window with html page inside parent page. Result: Attributes: allowfullscreen Allow to open iframe video in full screen. height and width You can declare specific height for the iframe. Result: loading : eager or lazy You can set the load time of the iframe : immediately or …