Answers for "hello world in html"

5

HTML hello world

<!DOCTYPE html>
<html>
  <body>
  	Hello World!
  </body>
</html>
Posted by: Guest on February-24-2020
2

hello world html

<!DOCTYPE html>
<html>
  <head>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <!-- CSS goes here -->
    <link></link>

    <title>Hello, world!</title>
  </head>
  <body>
    <h1>Hello, world!</h1>
    <!-- JS goes here -->
    <script></script>
  </body>
</html>
Posted by: Guest on April-13-2021
0

Hello World HTML Code Example

<html>
    <head>
        <title>Hello World</title>
    </head>

    <body>
         <h1>Welcome ! </h1>
         <p>Hello World, We've come here to learn HTML</p>
    </body>
</html>
Posted by: Guest on July-03-2021
0

simple hello world cod in html

<html>
<head>
<title>Page Title</title>

</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>


</body>
</html>
Posted by: Guest on August-12-2020
2

hello world in html using javascript

document.write("Hello world");
Posted by: Guest on October-08-2020
0

hello world in javascript

<script>
	alert("Hello World");  
</script>
Posted by: Guest on January-18-2021

Browse Popular Code Answers by Language