Skip to main content

Posts

Showing posts with the label Html & Css

21 Best DarkWeb Websites You Should Browse in 2022 | Dark Web Links

 21 Best DarkWeb Websites You Should Browse in 2022 | Dark Web Links The darkweb is a part of the internet that is not accessible through traditional web browsers. It can be accessed through special software, such as Tor. The darkweb can be used to do anything from buying and selling illegal goods, to whistleblowing and activism. The deep web has been around for a long time, but it became popular with the rise of Bitcoin in 2008. — Unsafe **  This all information is just for Educational Purposes. Please don't misuse it or try to harm anyone we are not responsible for any problems related to it  ** Warning! Take Security Precautions Before Proceeding With Dark Web Browsing  Here you will get best Dark web sites and their links , but before visiting it I will suggest you to take Security measures.  As we all know that that world of Dark web is very dangerous. I will suggest you to use VPN before entering in it.           FOR MORE INFORMATI...

Hex color to code

HEX COLOR TO CODE Hey everyone, today I am going to tell you about hex code to color . Html and Css are basic languages you have to know if you want to be a web developer. And, today web developers are in demand. In this blog I will tell you some basics of html. JUST READ THIS FULL ARTICLE… WHAT IS HEX CODE ? Hex code is a hexadecimal format, basically for identifying different-different colors in programming languages like html,css and svg. COLOR NAME HEX COLOR CODE RGB COLOR CODE SILVER #C0C0C0 RGB(192, 192, 192) MAROON #800000 RGB(128, 0, 0) OLIVE #808000 RGB(128, 128, 0) LIME #00FF00 RGB(0, 255, 0) AQUA #00FFFF RGB(0, 255, 255) TEAL #008080 RGB(0, 128, 128) NAVY #000080 RGB(0, 0, ...

The best html editor

The best html editior Hey, Everyone today I will not tell you about any html program because many of you were asking about the best html editor.   All the editors that I will suggest you are totally free of cost.  You know what you have to do, just ready this full article carefully.  THE BEST HTML EDITIOR   ARE :-  anWriter HTML editor ( the best html editor  for Android)  Visual Code(this is available both pc and Android on play store)  Notepad plus code editor TebEdit Spck code editor I had suggest all the best html editior  because it works perfectly . I had tried all these apps.  I hope you like it and the people that were asking about the best html editor  got there answer and don't forget to comment below.  STAY CONNECTED WITH US... 

Create an html form

Create an html form Hey, Everyone today in this post I will tell you to Create an html form.  So please read this complete article carefully. Don't miss anything. Many of you were asking about how to create form html.   So in this post I will answer all the question related to making a form html.   You have to only follow my steps.  STEPS:- Open notepad or any app to create an html form.  And write the html code given below .  <form>   <label for ="fname">First name :</label><br>   <input type ="text" id ="fname" name ="fname"> <br>   <label for ="lname" >Last name :</label><br>   <input type ="text"  id ="lname" name =         "lname"><br> <label for ="email" >Email :</label><br>    <input type ="text" id ="email" name ="email">  <br>       <p> Choose your Countr...

How to create hyperlink

How to create hyperlink Hey, everyone today I will tell you  how to create hyperlink many of you were asking that please write an article on how to create hyperlink. This is totally beginner's friendly guide to create hyperlink.  Only you have to read this full article carefully.  First off all you have to understand that what is hyperlink.  In simple language you can say that hyperlink is a text or a image that takes you to another page, documents or websites.  For example the website is a hyperlink. When you will click on it, it will transfer you to my home page.  Now I will give the html program that I had used to make this hyperlink as an example.  EXAMPLE :- <a href ="https://cyberrpunk.blogspot.com/">Website</a> You can make changes in it by your own. Instead of my blog like you can use any thing like url of any website or blog, any img url Or address from your file manager. Any thing you want.  I think you know now how to creat...

How to create a table html

How to create a table html Hey, everyone today I will tell you how to create table html . This is totally beginner's friendly guide to create table in html.  First off all you have to know some basic tags used in creating table.  <table> ------- This tag is used to create table.  <th>    ---------- It is used to create header cell <tr>      ---------- It is used to create row.  <td>      ------------ It is used to create cell.                  ⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇                                   INPUT :- <table>   <tr>     <th>Jhon</th>     <th>Sam</th>     <th>Virat</th>   </tr>   <tr>     <td>Emil</td>     <td>Tobias</td...

How to insert background image in html

How to insert background image in html.  Hey, everyone today I will tell you to  Insert background image in html.  This is totally beginner's friendly guide to  insert background image in html page.  Just follow the steps given below to insert background image in html..                  ⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇ STEPS:- 1. Open notepad or any software or apps for writing html program.  2. Write the program given below..  INPUT:- <html>  <head></head>   <body>    < style > p  {   background-image :  url('img_bg.jpg') ; } < /style >   </body> </html> OUTPUT :- I hope that it was helpful for you and today you had learned to insert background image in html.         FOR MORE INFORMATION STAY CONNECTED WITH US AND DON'T FORGET TO COMMENT BELOW.. 

Insert image in html

Insert image in html Hey, everyone today I will tell you to Insert image in html. This is totally beginner's friendly guide to insert image in html page.  HTML PROGRAM TO INSERT IMAGE  To insert image in html  follow all the steps given below :- ⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇⬇ STEPS :-                                                             1. Open Notepad or any software or app for html program.  2. Enter the code given below.                           INPUT :-      <html>             <head></head>                <body>           <img src="img_flower">                </body...