<!DOCTYPE html> <html lang="en">
<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title></title> </head>
<body> "Hello World!"
</body>
</html>
Problem of the day
Lets get started with Html! , Developers you have to render a text in your road towards html.
Welcome, developers! Your mission is to design an Html template which is greeting with the following content given below.
Best of luck, developers!
Interview problems
Code in HTML5
<!DOCTYPE html> <html lang="en">
<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title></title> </head>
<body> "Hello World!"
</body>
</html>
Interview problems
Hello World! -- Using a HTML5
This is the first program, using html language.
<!Doctype html>
<html>
<head> Hello World! </head>
<body>
<h1>Hello World!</h1>
</body>
</html>
Interview problems
Hello world
<!DOCTYPE html> <html>
<head> <title> First Web Page </title> </head>
<body> Hello World! </body>
</html>
Interview problems
Hello world
<!DOCTYPE html> <html> <head> <title>Hello World</title> </head> <body> Hello World! </body> </html>
Interview problems
solutioin- hello world
<!DOCTYPE html>
<html>
<head>
<title>Hello World</title>
</head>
<body> Hello World! </body>
</html>
Interview problems
Solution - Hello World!
<!DOCTYPE html> <html> <head> <title>Hello World</title> </head> <body> Hello World! </body> </html>
Interview problems
SOLUTION || Hello World! ||
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title> </title> </head> <body> Hello world! </body> </html>
Interview problems
Solution
<!DOCTYPE html> <html lang="en">
<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title></title> </head>
<body> Hello world! </body>
</html>
Interview problems
BASIC || Submission
<!DOCTYPE html> <html lang="en">
<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title> </p></title> </head>
<body> <p> <h1> Hello world </h1> </body>
</html>
Interview problems
Submission
How to submit a code?