Skip to main content

Posts

Showing posts with the label Hello World

Introduction

Introduction | HTML:  HTML stands for Hyper Text Markup Language. It is used for creating Web pages. It describes the structure of a Web page and consists of a series of elements. Here is the introOfHtml.html file: <html>   <head>     <title>Intro of HTML</title>   </head>   <body>     <h1>Win the World with Love</h1>   </body> </html> Web view of Html: <!-- <html> element is the root element of an HTML. <body> element is the visible content in Web browser, Content having headings,paragraphs,images, etc. Few more elements will discus in upcoming videos. What is an element in HTMl? Every element having two tags, one is start tag and other one is end tag and in between of both tags Content exists. Examaple : <you> content </you>, here you is tag name. --> Here is the Video:

Hello World

Java | Hello World: Most well know beginning word "Hello World" for any programming language.  Here is the Code: import java.io.*; class HelloWorld { public static void main (String[] args) { System.out.println("Hello World"); } }       Output: Hello World. Here is the Video:

Hello World

Program to print "Hello World" using C++. #include <iostream> using namespace std; int main() {           cout<<"Hello World";           return 0; } Here is the link for online execution: https://ide.geeksforgeeks.org/0pcL5B3xy5 . Program to print the "Hello World" using C. #include <stdio.h> int main() {          printf("Hello World");          return 0; } Here is the link for online execution: https://ide.geeksforgeeks.org/kA1mwOavW9  . Program to print "Hello World" using Java. import java.io.*; class HelloWorld {        public static void main(String args[])       {               System.out.println("Hello World");        } } Here is the link for online execution: https://ide.geeksforgeeks.org/hay0o092zV  .