Computer Science, asked by amisinghnegi000, 8 months ago

create a school website using html tags

Answers

Answered by Anonymous
1

Explanation:

<!DOCTYPE html>

<html lang="en">

<head>

<title>Page Title</title>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1">

<style>

body {

font-family: Arial, Helvetica, sans-serif;

}

</style>

</head>

<body>

<h1>My Website</h1>

<p>A website created by me.</p>

</body>

</html>

Similar questions