Answers for "basic website html code"

3

Basic HTML code

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <style>
    </style>
    <title>Document</title>
  </head>
  <body>
  </body>
</html>
Posted by: Guest on May-20-2021
1

html basic code

<!DOCTYPE html>
<html>
  <title>"TEXT"</title>
  <body>
    "Eliments"
  </body>
</html>
Posted by: Guest on November-22-2020
6

simple html website coding

<!DOCTYPE html>
<html>
<head>
<style>
body {background="purple";}
</style>
<title>Page Title<title>
</head>
<body>
<h1>Yay</h1>
<p>yay is a word used to describe that your happy!</p>
</body>
</html>
Posted by: Guest on September-11-2020
2

basic html code

<!DOCTYPE html>
<html>
<head>
  <title>put your title here</title>
</head>
<body>
</body>
</html>
Posted by: Guest on May-11-2021

Browse Popular Code Answers by Language