<a href="https://business.com"<baryalkhan
Hi @b3433392, welcome to the forum!
Can you provide more information so it’s easier for other members of the community to help you?
2 Likes
To correct this do this (assuming you want this fixed):
<a href="https://business.com">baryalkhan</a>
I’m assuming the name of the hyperlink ofc
5 Likes
A HTML file, for compatibility and accessibility, should always have this at the start:
<!DOCTYPE html>
<meta charset=utf-8>
<meta name=viewport content=width=device-width>
<title>short, descriptive text summarizing the page's contents, unique to this page</title>
<html lang=en>
Here, you would then put the page’s content:
3 Likes
This is my OCD speaking: where are all the quotes?
I know you don’t necessarily need them, but it’s preferable.
4 Likes
No? This is a quotation mark: "
And this is a single quote: '
3 Likes
<meta charset="utf-8">
<meta name="viewport" content="width-device-width">
<title>short, descriptive text summarizing the page's contents, unique to this page</title>
<html lang="en">
2 Likes