User:Zuhui/Prototyping/HTML/CSS

From XPUB & Lens-Based wiki
< User:Zuhui‎ | Prototyping
Revision as of 11:12, 12 November 2024 by Zuhui (talk | contribs)

Basic HTML

HTML basic structure

<!DOCTYPE html>
<html>
<head>
 <title></title>
</head>
<body>
</body>
</html>


Basic CSS

:root

:root{
--(name of the var):(color, fontsize etc);
}
//-- two dash is mendatory
//when use
ex) font-size: var(--main-font-size);