WD 1a. IntroToHTML&CSS
<!-- This is doctype -->
<!DOCTYPE html>
<!--Our HTML code starts here -->
<html lang="en">
<!--Our Head code starts here -->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>This is title</title>
</head>
<!--Our Body code starts here -->
<body>
yeh meri body ka content hai
</body>
</html>
#IntroToCSS
body{
background-color: red;
color: white;
}
#output:
Comments
Post a Comment