📘 Web Development Reference

HTML · CSS · JavaScript Quick Guide — v2.4.1

🏷️ HTML Elements

TagDescriptionExample
<section>Semantic section<section id="about">
<article>Self-contained content<article>Post</article>
<aside>Sidebar content<aside>Related</aside>
<details>Expandable widget<details><summary>...</summary></details>
<dialog>Modal dialog box<dialog open>Alert</dialog>
<template>HTML fragment holder<template>...</template>

🎨 CSS Properties

PropertyValuesUsage
displayflex, grid, block, noneLayout mode
positionrelative, absolute, fixed, stickyPositioning context
overflowhidden, scroll, auto, visibleOverflow behavior
z-indexinteger, autoStacking order
opacity0.0 – 1.0Transparency level
transformrotate(), scale(), translate()2D/3D transforms

📜 JavaScript Methods

MethodReturnsDescription
Array.map()New ArrayTransform each element
Array.filter()New ArrayKeep matching elements
Array.reduce()Single valueAccumulate results
String.split()ArraySplit by delimiter
String.replace()StringPattern replacement
Object.keys()ArrayEnumerate property names

⌨️ Editor Shortcuts

KeysActionEditor
Ctrl+DSelect next occurrenceVS Code
Ctrl+Shift+LSelect all occurrencesVS Code
Alt+↑/↓Move line up/downVS Code
Ctrl+/Toggle line commentMost editors
Ctrl+Shift+KDelete current lineVS Code
F2Rename symbolVS Code

🌈 Common Colors

NameHexRGB
Slate Blue#6A5ACD106, 90, 205
Dark Cyan#008B8B0, 139, 139
Tomato#FF6347255, 99, 71
Forest Green#228B2234, 139, 34
Goldenrod#DAA520218, 165, 32
Steel Blue#4682B470, 130, 180

🌐 HTTP Status Codes

CodeMeaningCategory
200OKSuccess
301Moved PermanentlyRedirect
403ForbiddenClient Error
404Not FoundClient Error
500Internal Server ErrorServer Error
503Service UnavailableServer Error

Reference updated: August 2026 · --:--