HTML page with hyperlink is blank

<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

2 posts were split to a new topic: Why is the edit history broken

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

@anonymt What do you mean by ‘quotes’. Are they like comments?

No? This is a quotation mark: "
And this is a single quote: '

3 Likes

4 posts were split to a new topic: = in attribute names

No as in @anonymt he said

What kind of quotes is he referring to in @UMARismyname 's code?

<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

A post was merged into an existing topic: = in attribute names