Learn to code webpages!
Blog
to HTML & CSS
HTML & CSS is the code used to build webpages. A webpage consists of boxes on a page. Let's learn how to create a blue box...
<html>
<!-- HTML start -->
<head>
<style
type
=
"text/css"
>
<!-- CSS start -->
#box1
{
width: 215px;
height: 260px;
background-color: blue
}
<!-- CSS end -->
</style>
</head>
<body>
<div
id="box1">
</div>
</body>
</html>
<!-- HTML end -->