Answers for "HTML code example"

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
6

html example

<!DOCTYPE html>
<html lang="en" dir="ltr">
  <head>
    <meta charset="utf-8">
    <title></title>
  </head>
  <body>
    
  </body>
</html>
Posted by: Guest on February-08-2021
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
0

html example

<html>
<body>
<h1>My First Heading</h1>
<b><!--This is a comment line--></b>
<p title="About Me" class="test">My first paragraph.</p>
<div class="cities">
<h2>London</h2>
</div>
</body>
</html>
Posted by: Guest on August-15-2021
0

html sample code

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    
</body>
</html>
Posted by: Guest on March-05-2021

Browse Popular Code Answers by Language