Sizing
Flexbox
flex-direction: row
flex-wrap: nowrap
align-content: normal
justify-content: normal
align-items: normal
Typography
Visual Styles
Animations & Transitions
Translate
Scale
Rotate
<!DOCTYPE html>
Declares the document as HTML5.
<!DOCTYPE html>
Declares the document as HTML5.
<html>
The root element that wraps all other content.
<head>
Contains metadata, titles, and links to CSS/scripts.
<title>
Sets the page name seen in browser tabs
<body>
Contains the visible content of the webpage.
<p>
Defines a paragraph.
<br>
Inserts a single line break.
<hr>
Creates a thematic break (horizontal line).
<blockquote>
For sections quoted from another source.
<pre>
Displays preformatted text exactly as written.
<meta>
Provides character sets, keywords, or descriptions.
<link>
Connects to external files like CSS stylesheets.
<style>
Contains internal CSS styling.
<script>
Embeds or links to client-side JavaScript
<noscript>
Displays content if JavaScript is disabled.