<!-- sample solutions to Latest and Greatest-->
<!DOCTYPE html>
<head>
<style>
body {
text-align: center;
}
</style>
</head>
<body>
</body>
</html>
<!-- sample solutions to Changing Color -->
<!DOCTYPE html>
<head>
<style>
body {
text-align: center;
background-color: black;
color: white;
}
</style>
</head>
<body>
This is sample text.
</body>
</html>
<!-- sample solutions to Fonts -->
<!DOCTYPE html>
<head>
<style>
body {
text-align: center;
background-color: black;
color: white;
font-family: Helvetica;
}
</style>
</head>
<body>
This is sample text.
</body>
</html>
No comments:
Post a Comment