Code360 powered by Coding Ninjas X Naukri.com. Code360 powered by Coding Ninjas X Naukri.com

Hello World!

Easy
0/40
Average time to solve is 20m

Problem statement

Hello World!

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.


Task for students

  • Must to have
    • Inside the < body> tag render the following text "Hello World!"

UI reference
  • Use the given provided code and try to mirror the UI.
  • hello world

Evaluation
  • After submission, your solution will be evaluated automatically based on the tasks defined above.
  • Upon successful completion of all the tasks/requirements, you will get a full score, and there will not be any partial scoring.
  • You can work on your failed test cases & resubmit your solution.
  • Your problem will get evaluated instantly.

Do’s & don’t
  • Use the given code structure in editor and do not make any changes.
  • Do not modify existing classes or tags.
  • Focus on correct HTML structure and class names.

Query & feedback
  • In case of any query/feedback on this project, please fill this form & we will soon get in touch with you to resolve.

Best of luck, developers!

Solution
(100% penalty upon viewing solution)
Hello World!
Search icon

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>

1 view
0 replies
0 upvotes

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> 

10 views
0 replies
0 upvotes

Interview problems

Hello world

<!DOCTYPE html> <html>

<head> <title>  First Web Page </title> </head>

<body> Hello World! </body>

</html>  

13 views
0 replies
0 upvotes

Interview problems

Hello world

<!DOCTYPE html> <html> <head>    <title>Hello World</title> </head> <body> Hello World! </body> </html>  

17 views
0 replies
0 upvotes

Interview problems

solutioin- hello world

<!DOCTYPE html>

 <html>

 <head>

    <title>Hello World</title> 

</head> 

<body> Hello World! </body> 

</html>  

15 views
0 replies
0 upvotes

Interview problems

Solution - Hello World!

<!DOCTYPE html> <html> <head>    <title>Hello World</title> </head> <body> Hello World! </body> </html>  

7 views
0 replies
0 upvotes

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>  

19 views
0 replies
0 upvotes

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>  

59 views
0 replies
0 upvotes

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>

63 views
0 replies
0 upvotes

Interview problems

Submission

How to submit a code?

 

60 views
1 reply
0 upvotes
All tags
Sort by