Navigate to repl.it and create a new repl with html/css/js selected as the language

HTML/CSS

html has opening and closing tags

<html>
</html>

All of your html will be enclosed in <html> tags.

Try putting your name in a header tag!

<h1>Your Name Here!</h1>

Now, let's go to style.css and format the body text

body {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

Let's insert an image

<img src="put img url in quotes"/>

and in style.css

img {
  height: 150px;
  border-radius: 50%;
}

We can do a lot of things to style, but let's quickly talk about links

The a tag can be used to specify a link, and we use href to specify where the link goes to. Let's create a tag with a link to Google

<a href="<https://google.com>"><p>Look Something Up!</p></a>

See how we enclosed the a tags in p tags? This will make the text between the p tags highlight with the link.

JavaScript