User:Zuhui/Prototyping/HTML/CSS: Difference between revisions
< User:Zuhui | Prototyping
(→Basic) |
|||
Line 1: | Line 1: | ||
=Basic= | =Basic= | ||
HTML basic structure | |||
<code> | |||
<!DOCTYPE html> | |||
<html> | |||
<head> | |||
<title></title> | |||
</head> | |||
<body> | |||
</body> | |||
</html> | |||
</code> |
Revision as of 11:07, 12 November 2024
Basic
HTML basic structure
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>