This course is for those who dare to dream big. Those who dare to code big.
Create an HTML page with a green background and a black border.
<html>
<body style="background-color: #00ff00;">
</body>
</html>
Submit
Create a div with a red background and a black border and text inside with a white background.
<div style="background-color: #ff0000; border: 1px solid black; padding: 20px; "&>
<span style="background-color: white; color: black; padding: 10px 10px 10px 10px;">Hello, World!</span>
</div>
Submit
Create a page with a blue background and a black border, and a centered heading.
<html>
<body style="background-color: #0000ff; border: 1px solid black;">
<h1 style="text-align: center;">Bob's Education</h1>
</body>
</html>
Submit