I want to practice html, but I can’t find anywhere to do that. Is there a place on Codecademy? Does anyone have a suggestion for how I should go about trying to find a place?
The simplest place is right at your fingertips… Your browser and your text editor. Create a folder in your documents folder with a simple name… HTML Projects.
In that folder create a basic template file with all the boilerplate in place. You can use this to spin off new page projects. Put each project in its own folder, and start by opening the template file, Save As to the new folder as index.html
. Now you can create your practice project page.
template.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML Template</title>
<style>
</style>
</head>
<body>
<h1>HTML Template</h1>
</body>
</html>
Once you create the page, save it and then open it in a browser. You are all set.
If you want a public sandbox, then repl.it is a good site to join. It has a wide range of a languages available, include HTML, CSS and JavaScript which are the languages we have available in our browser.
Okay, thanks! I hadn’t even thought of that! Thanks!
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.