Computer Science, asked by spoorthi4868, 7 months ago

create a web page using HTML tags​

Answers

Answered by dillonbarnes07
1

Here is a basic HTML template.

Fill in the gaps with the content you want.

<!DOCTYPE html>

<html>

<head>

<title>Put the title of your page here</title>

<link rel="stylesheet" href="styles.css"> - If you have a CSS sheet link it here.

</head>

<body>

<h1>Put heading here</h1>

<p>Put paragraph here</p>

</body>

</html>

Fill in the gaps and add more if you want.

Please mark me as the brainliest if this helps.

Similar questions