Posts

Showing posts from July, 2022

HTML Forms and Input Tags

Image
Today We will Create a Form in HTML using Different Types of Input Tags! Input Tags We are going to use today are as Follows : Text Email Number Date Radio Button Check Box Select Text Area Submit Reset Using This Input Tags we are going to make a Form which is consist of Name, E-mail, DOB, Age, Gender, Biodata, Country. Source Code : <html>   <head>     <title>       Forms using HTML     </title>   </head>   <body bgcolor="Salmon">     <h1>MySelf</h1>     <form action="">       <!--<label for="name">Name</label>-->       <div>Name:<input type="text" name="MyName" id="Name" /></div>       <br />       <div>Email:<input type="email" name="myEmails" id="" /></div>       <br />       <div>Date Of Birth:<input type="date" name="Date:" id="" />

Simple Website Creation Using HTML Only...

Image
  Hey guys this is HTML Website Example Try with These Buttons Click here to check how to write HTML code Click Here Click Here For Introduction of HTML click Here Click Here For Features of HTML click Here Now Let's Add some Images Now Using HTML We will Create Clone Of This Website <html>   <head>     <title>Learn With TJ5</title>   </head>   <body>     <p>&nbsp;</p>     <h1 style="text-align: center;">Hey guys this is HTML Website Example</h1>     <div>       <h3>Try with These Buttons</h3>       <h4>Click here to check how to write HTML code</h4>       <a         href="https://learnwithtj5.blogspot.com/2022/06/how-to-write-html-code.html"       >         <button>Click Here</button></a       >     </div>     <div><br /></div>     <div><b>Click Here For Introduction of HTML</b></div&g

Creating Button In HTML

Image
 Creating Button In HTML The Button Tag defines the clickable button. Inside Button tag you can add text and tags like <i>, <b>, ,br>, <img>. To create Button we use <button> </button> tag. To make it clickable use type =" button". Source Code : < html > < head > < title > TJ5 Server </ title > </ head > < body > < button type =" button "> Click Here </ button > </ body > </ html > Output : Tejas Dhodi👦 11 July 2022    

Hyperlink in HTML

 How to Hyperlink in HTML What is Hyperlink?? Hyperlink is a process in which one document is attached with another document ,eg. suppose if we have to make a text responsive which means if we click on that text that time that text should redirect the another document which we have link to the text. Use of Hyperlink : Most web pages are filled with dozens of hyperlinks, each sending the visitor to some related web page, picture, or file. Search results are another easy way to observe hyperlinks; search for anything in  Bing ,  Google ,  DuckDuckGo , or another search engine, and every result is a hyperlink to the different web pages that show up in the results. A hyperlink can even point to a specific section of a web page (and not just the primary page) using what's called an anchor. Which tag is used to hyperlink a text?? Hypertext Anchor <a href =" "> </a> tag is used to hyperlink a text. If the element has a href attribute, then it represents a hyperlin

Add Images using HTML

Image
 How to Add Image using HTML To add image to the website using HTML generally we use  '  img 'tag ( <img src=" " alt=" "> ) in '  src ' add source of image and '  alt ' section add alternative name of that image. Example: < html > < head > < title > HTML Colors by Name </ title > </ head > < body > < img src =" html.png " alt =" # " /> </ body > </ html > Output: If you guys found helpful then please d let me know in comment section.👇👇 Tejas Dhodi👦, 9 July 2022.