answersLogoWhite

0


Best Answer

No code is needed. If you wanted to, you could just make a blank HTML page and write "Hello world" on it with out any HTML code.

Tumudracs improved answer:

If you want to be a true HTML coder here is the code:

<HTML>

<head>

<title>

Hello World

</title>

</head>

<body>

Hello World

</body>

</HTML>

If you wanna get technical, it would be

<! DOCTYPE HTML PUBLIC "-//W3C DTD HTML 4.01//EN" "http://www.w3c.org/TR/html14/strict.dtd">

<HTML>

<head>

<meta http-equiv="Content-Type" content="text/HTML; charset=iso-8859-1">

<title>Hello World</title>

</head>

<body>

<p>

Hello World

</p>

</body>

</HTML>

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

8y ago

The following is sufficient enough to create a simple web page that says hello world.

<html>

<head>

<title>My Web Page</title>

</head>

<body>

hello world

</body>

</html>

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the HTML code needed for a website that displays Hello World?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can you show me an example of a program that displays a string?

#include&lt;iostream&gt; int main() { std::cout&lt;&lt;"Hello world!\n"; }


Why is complication needed before executing a C program?

It doesn't have to be complicated. Just look at "Hello World" for your proof.


How do you write hello world in PHP?

&lt;?php echo "Hello world"?&gt;


The correct way to write Hello World in PHP is?

echo("hello world");


printing haricts of hello world?

use $(documeny).echo(&quot;hello world&quot;);


What is the correct JavaScript syntax to write Hello World?

document.write("hello world");


How do you convert string hello world into hello world?

They are identical, no conversion required.


How do you make a flowchart for 'hello world'?

( start ) -&gt; / Write "Hello World" / -&gt; ( end ) *try to search an example on google. *type "flowchart of hello world"


Why do you celebrate world hello day?

We celebrate World Hello Day because its the day for us to say HELLO to everyone


What are the four richest churhes in the world?

Hello Hello


Hello world program?

A "Hello world" program is usually the very first program you write when learning a new programming language, it simply prints out the text "Hello World". Below are a few examples: PHP: echo "Hello World"; _____________________________________ JavaScript: document.write("Hello World"); _____________________________________ Visual Basic: Module Hello Sub Main() MsgBox("Hello, World!") ' Display message on computer screen. End Sub End Module


How do you print hello world 100 times in c plus plus using while statment?

C++ Hello World Example:// this is a single line comment /* this is a multi-line comment */ #include // header file needed to print using namespace std; // instead of having to write std::cout // the main function is where the program begins execution int main() { // print Hello world. and a new line cout