-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Rebecca F edited this page Nov 7, 2022
·
2 revisions
Take a look in index.html. This is where the HTML code for the website is. I recommend this website: https://www.w3schools.com/html/ for the basics on using HTML.
Here's an example of some HTML:
<!DOCTYPE html>
<html>
<body>
<h1> My First Heading </h1>
<p> My first paragraph. </p>
</body>
</html>