Skip to main content

My First HTML Program.....

MY FIRST HTML PROGRAM....

                 Hey everyone! I'm writing this blog after a long time on my blogger account. Blogger account? yes you read correctly. I use google's product blooger to write my blogs. It is developed and maintained by google. Google allows anyone to create a bogging account on their platform and write blogs over here. 

                Despite being an IT student, I'm not fully ready to make a whole website by my own. The reason behind this is, I have recently started web programming subject in my 2nd semester and I'm being taught the basics of web development i.e. html, css and javascript as my frontend languages. And these languages are just awesome to start learning programming with scratch. In todays session I will be talking about html. I'll also paste my code in todays blog and its output so that you'll can copy & paste and run the code on notepad, notepad++ or any text editor of your choice and practice the code to get the output on your own. 

        


INTRODUCTION:

What is HTML?

             HTML is the acronym for Hyper Text Markup Language. It is a scripting language used to publish information or to write or display written content on a website. It is a key scripting language to create a website. HTML is an interpreted programming language, its means html doesn't require a compiler to compile and run the code. It directly gets run on the browsers like google chrome, internet explorer, safari, mozilla firefox etc. 


My first HTML code:

<!DOCTYPE>
<html>
     <head>
     <title>brijrajblogs.com</title>
     </head>
<body style="background-color:black; color:white">
<h1 align="center">BRIJRAJ BLOGS</h1>
<nav>
<hr>
<p style="margin:0px">
<a href="https://brijrajrastog.blogspot.com/">HOME</a> &nbsp;
<a href="https://www.instagram.com/rascart1/?hl=en">INSTAGRAM</a> &nbsp;
<a href="https://twitter.com/rascart1">TWITTER</a> &nbsp;
<a href="https://www.blogger.com/profile/01634393169531615045">ABOUT US</a>&nbsp;</p>
<hr>
</nav>
<h2 align="center">Welcome To My Blog</h2>
Hey everyone out there, I am is <b>Brijraj Rastogi</b>.<br> This is my <i>web programming assignment</i>.<br>
 You can visit our <u>instagram</u> and <u>twitter</u> handles by simply clicking on the links given above.
<img src="https://i2-prod.mirror.co.uk/incoming/article21746095.ece/ALTERNATES/s1227b/2_Sonoran-Desert.jpg" alt="Desert" width="1300" height="400"> 
</body>
</html>

The output:




   Thank you(:





Comments