HTML and CSS are web technologies and Front end languages that are executed by browser agent. HTML is often referred to as the skeleton of a website and it is made up of several tags. It always has a opening and a closing brace in a form of this (<>). These tags includes but are not limited to the following;
<head> for declaring the initial part of the web page that includes .js inks to css or inbuilt css. within the head tags, there is usually a <title> to specify the title of a specific page</title> </head>
<body> this tag contains the major parts of the website. in has so many tags within it. Examples of such includes; <div> for dividers</div>,<img> for images</img>, <video> to embed a video</video>, <table> to create a table that can be further broken down in <td></table>. The list is endless.
Talking about CSS, CSS gives beauty and live to HTML. It gives how html will be displayed, how the color, arrangement and full description of how the html should like. Some of CSS syntax are background-color, color, font-family, text-align etc. The CSS consist of the selector and the the declaration' For example h1{ background-color: blue; } The background color is the selector and blue is the declaration of what exact color you want it to give you.
No responses yet.