This website and it's tutorials are only made possible with your support. Support money goes towards keeping our servers online and paying content writers.
Spread the word! Let people know about our tutorials by placing links on blogs, websites, forums and other places.
The <a> tag is used to create hyperlinks to pages on your website or pages anywhere on the internet.
<a href=" https://stepbystephtml.com" target="_blank">Go to SBS HTML</a>
<!DOCTYPE html>
<html>
<head>
<title>My Web Page</title>
</head>
<body>
<h1 id="top">My Web Page</h1>
<p>
This is my web page. Below this paragraph I'll include a link to the top of my page.
</p>
<p>
<a href="#top">Go to Top</a>
</p>
</body>
</html>