Html Programming Language simple code | html programs examples with output | Html programs in notepad | Html basics |

 

Html_Programming_Language_simple_code



The Hypertext Markup Language is a language used for programming. This Html programming language can be used for creating websites, web pages. It can also be used for designing websites. If you want to make your own website by yourself then you can make it only with Html.

HTML meaning or What is HTML programming?

Html is Hypertext Markup language which used for developing and designing websites. It is not a much difficult language like Java and C++. Html is such an easy language that everyone can learn it easily. 

Is every website made by Html?

Yes, every website sees on Google, Bing, Yahoo or other platforms is made by Html coding. Html is a coding language that is specially made for website developing and designing. Html language can only be used for creating or designing websites. 

Basic HTML programming code -

The code given below is an Html code with output. You just need to copy, paste and save the code in notepad. After this, you need to open your saved notepad code in chrome. Now your code will run and show the output. 
Basic html code example - 
<!DOCTYPE html>
<html>
<head>
       <title> My first website </title>
 <link rel"stylesheet" type="text/css" href="deepu.css">
</head>
</body>

         <h1>Gamers Global Tournament Registration Form</h1>

         <div id="reg-form">
                <form action=""method="">
                  <label for="first-name">Player's First Name-</label>
                  <input type="text" name="first-name" 

placeholder="Harry" required>
                  <label for="last-name">Player's Last Name-</label>
                  <input type="text"name="last-name" 

placeholder="paul" required>

  <div id="gender-choice"> 
       <label for="gender-male">Male</label>
       <input type="radio" name="gender-choice" value="choice-1">
       
       <label for="gender-female">Female</label>
       <input type="radio" name="gender-choice" value="choice-2">
       
       <label for="gender-other">Other</label>
       <input type="radio" name="gender-choice" value="choice-3">

  </div>
  <Group description="Theme Colors" selector="h1">
  <Variable name="main.color" description="Theme Color" type="color" default="#6b48ff" value="#6b48ff"/>
  <div>
  <label for="game">Game</label>
  <select name="game">
  <option value="PUBG"> PUBG</option>
  <option value="Free Fire"> Free Fire</option>
  <option value="Call of Duty"> Call of Duty</option>
  <option value="Other"> Other</option>


 
  </div>
  <div>
  <label for="age limit">age-</label>
  <input type="number" name="age"
  placeholder="Your Age" required>
 



  </div>
  <div>
  <label for="description">Description-</label>
  <input type="text" name="Description"
  placeholder="Describe yourself" required>

  <BUTTON for="Submit">SUBMIT</BUTTON>
 
 

  </div>
  </head>
  </html>
This program is a basic Html registration forum. You can see the output of the program by copy-pasting this into your notepad and saving it. After this you need to open your notepad file in chrome or any other web browser, so you will see the output.

We hope this article helped you with basic HTML programming. These were simple HTML coding tutorials. Let me know in the comments that your code worked or not.   
HTML programs notepad.

Post a Comment

0 Comments

close