0% found this document useful (0 votes)
5 views3 pages

HTML CSS JavaScript Cheat Sheet Original

This document is a comprehensive cheat sheet covering HTML, CSS, and JavaScript basics, including document structure, semantic tags, selectors, box model, Flexbox, Grid, positioning, responsive design, and JavaScript fundamentals. Each section includes syntax examples and key tips for quick revision. Additionally, it addresses advanced topics such as asynchronous JavaScript, ES6 features, forms, storage, debugging, and best practices.

Uploaded by

pocpanther
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views3 pages

HTML CSS JavaScript Cheat Sheet Original

This document is a comprehensive cheat sheet covering HTML, CSS, and JavaScript basics, including document structure, semantic tags, selectors, box model, Flexbox, Grid, positioning, responsive design, and JavaScript fundamentals. Each section includes syntax examples and key tips for quick revision. Additionally, it addresses advanced topics such as asynchronous JavaScript, ES6 features, forms, storage, debugging, and best practices.

Uploaded by

pocpanther
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

HTML, CSS & JavaScript Cheat Sheet (Original)

HTML Basics
Document structure, headings, paragraphs, links, images, lists, tables, forms, semantic tags.
Include syntax examples and key tips for quick revision.
Document structure, headings, paragraphs, links, images, lists, tables, forms, semantic tags.
Include syntax examples and key tips for quick revision.

HTML Semantic Tags


header, nav, main, section, article, aside, footer. Include syntax examples and key tips for quick
revision.
header, nav, main, section, article, aside, footer. Include syntax examples and key tips for quick
revision.

CSS Selectors
element, class, id, attribute, pseudo-class, pseudo-element. Include syntax examples and key tips
for quick revision.
element, class, id, attribute, pseudo-class, pseudo-element. Include syntax examples and key tips
for quick revision.

CSS Box Model


content, padding, border, margin. Include syntax examples and key tips for quick revision.
content, padding, border, margin. Include syntax examples and key tips for quick revision.

Flexbox
display:flex, justify-content, align-items, flex-direction, gap. Include syntax examples and key tips for
quick revision.
display:flex, justify-content, align-items, flex-direction, gap. Include syntax examples and key tips for
quick revision.

Grid
grid-template-columns, rows, gap, areas. Include syntax examples and key tips for quick revision.
grid-template-columns, rows, gap, areas. Include syntax examples and key tips for quick revision.

Positioning
static, relative, absolute, fixed, sticky. Include syntax examples and key tips for quick revision.
static, relative, absolute, fixed, sticky. Include syntax examples and key tips for quick revision.

Responsive Design
media queries, viewport, fluid layouts. Include syntax examples and key tips for quick revision.
media queries, viewport, fluid layouts. Include syntax examples and key tips for quick revision.

JavaScript Basics
variables, let, const, operators, types. Include syntax examples and key tips for quick revision.
variables, let, const, operators, types. Include syntax examples and key tips for quick revision.

Functions
declarations, expressions, arrow functions. Include syntax examples and key tips for quick revision.
declarations, expressions, arrow functions. Include syntax examples and key tips for quick revision.

Arrays
map, filter, reduce, forEach, find. Include syntax examples and key tips for quick revision.
map, filter, reduce, forEach, find. Include syntax examples and key tips for quick revision.

Objects
properties, methods, destructuring, spread. Include syntax examples and key tips for quick revision.
properties, methods, destructuring, spread. Include syntax examples and key tips for quick revision.

DOM
querySelector, events, classList, createElement. Include syntax examples and key tips for quick
revision.
querySelector, events, classList, createElement. Include syntax examples and key tips for quick
revision.

Events
click, input, submit, keydown. Include syntax examples and key tips for quick revision.
click, input, submit, keydown. Include syntax examples and key tips for quick revision.

Async JS
promises, async/await, fetch. Include syntax examples and key tips for quick revision.
promises, async/await, fetch. Include syntax examples and key tips for quick revision.

ES6+
template literals, modules, default parameters. Include syntax examples and key tips for quick
revision.
template literals, modules, default parameters. Include syntax examples and key tips for quick
revision.

Forms
validation and preventDefault. Include syntax examples and key tips for quick revision.
validation and preventDefault. Include syntax examples and key tips for quick revision.

Storage
localStorage and sessionStorage. Include syntax examples and key tips for quick revision.
localStorage and sessionStorage. Include syntax examples and key tips for quick revision.
Debugging
console, breakpoints, common errors. Include syntax examples and key tips for quick revision.
console, breakpoints, common errors. Include syntax examples and key tips for quick revision.

Best Practices
semantic HTML, reusable CSS, clean JS. Include syntax examples and key tips for quick revision.
semantic HTML, reusable CSS, clean JS. Include syntax examples and key tips for quick revision.

You might also like