0% found this document useful (0 votes)
4 views2 pages

HTML Css Cheat Sheet

This document serves as a cheat sheet for HTML and CSS, providing basic structure and common elements of HTML, such as headings, paragraphs, and links. It also outlines CSS syntax and common properties used for styling, including color, margin, and display properties. Examples are provided to illustrate the application of these concepts in web development.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views2 pages

HTML Css Cheat Sheet

This document serves as a cheat sheet for HTML and CSS, providing basic structure and common elements of HTML, such as headings, paragraphs, and links. It also outlines CSS syntax and common properties used for styling, including color, margin, and display properties. Examples are provided to illustrate the application of these concepts in web development.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

HTML & CSS Cheat Sheet

HTML Basics
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<link rel="stylesheet" href="[Link]">
</head>
<body>
<h1>Hello</h1>
<p>Paragraph</p>
</body>
</html>

Common HTML:
<h1>-<h6>, <p>, <a>, <img>, <div>, <span>, <ul>, <ol>, <li>, <table>, <form>, <input>,
<button>

CSS Basics:
selector {
property: value;
}

Common Properties:
color
background-color
font-size
font-family
margin
padding
border
width
height
display
flex
justify-content
align-items
position
text-align
border-radius
Example:
body{
font-family: Arial;
background:#f5f5f5;
}
.container{
display:flex;
justify-content:center;
align-items:center;
}
button{
background:blue;
color:white;
padding:10px 20px;
border:none;
border-radius:5px;
}

You might also like