Posts

Showing posts from March, 2018

Creating simple a nav bar in HTML using Table

Image
Introduction to Nav: Img: Horizontal Nav bar Img: Vertical Navbar Nav is the menu or the list of webpage in a website. We can visit from one page to other easily using the nav of the webpage. The simple nav bar is shown below.. Home     Services      Contact       About So above was a example to a simple horizontal navbar using CSS and HTML. As this is a tutorial for beginner, I am not gonna teach how to design a similar navbar, but if you want to add the similar nav to your page, here's the code.. <div style="background: green; color: white; height: auto; padding: 10px; width: 100%;"> <a href="" style="color: white;">Home</a>&nbsp; &nbsp; <a href="" style="color: white;">Services</a>&nbsp; &nbsp; <a href="" style="color: white;">Contact</a>&nbsp; &nbsp; <a href="" style="color: white;">About<...

Title & Favicon || HTML blogs

Image
Hay guys. Maneesh once again with a new blog on how title and favicon of the page. Hope you like it. What Is The The Title? The title tag is used for naming a page. Basically it's not naming but as said before the text inside the title bar of browser is known as title of the page. For example if you are visiting Facebook , You will see the facebook written at the top of the browser. This is called title of the page. What Is The Favicon/Fav? Favicon is the picture shown in the title bar along with the title. For example if you visit YouTube  you can see the small icon of facebook at the title bar.  How to input title in the webpage? For inserting the title you need to use the title tag. It is used in the head section. For example the title tag is used as below: <head>      <title>Title goes here</title> </head> How to input the Favicon? Many of you may want to insert the image in the title bar but the <img /...

HTML Table Explained | HTML made easy

Image
HTML Table Explained Welcome to another new tutorial on HTML guys. In previous tutorial we learnt to insert image and various attributes of <img> in HTML. I hope you had no complication in that tutorial. If you have any complication, please feel free to contact me here . I will surely explain you anything you had complications with.. You can even get in touch by any of the social media link given below. In the same way please follow me on instagram  to keep updated with my newer videos and technical blogs.. So lets begin our tutorial. First of all, a table is created using the tag "<table>" and it's various attributes.. Some popular attributes and their uses are given below. border - Specifies the border of the table. More the number more bold and bigger the table border. cellspacing - To specify the space between cells.. Cellpadding - To specify the space between datas of table. Style -  To add a inline CSS style Class - To link ...