<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/courses/make-a-website/lessons/site-structure/exercises/anchor-elements
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
When I try to make an anchor element I keep getting the same errors, which are: special characters must be escaped : [ < ]. and also the same error with this at the end: [ > ]. and Tag must be paired, no start tag : [ </a ] I’ve been trying for an hour and googled a bit but I don’t get it.
<!DOCTYPE html>
<html>
<head>
<title>Ollie Bike Sharing</title>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<h1>
Test
</h1>
<h3>
Test
</h3>
<p>
Here is a <a href=''cities.html''>list</a> of cities where you can find us.
</p>
</body>
</html>