Posts

Showing posts with the label HTML

How to send message to a number using HTML | HTML API

 How to send message to a number using HTML So we can send message through HTML. How? We can send sms through <a> tag. <a> tag is use to create link in the web page but we can also send messages through it. To Send messages through link follow these steps: Create and Name your link We can create link using <a> tag. The text between <a> and </a> is the name that are display on a link. You can enter any name between anchor tag. Link attribute  Some tags of HTML has its own attributes. Attributes are the properties of any tags. Anchor <a> tag use href attribute. Href means hypertext reference. Through attribute we can send sms.  Insert Data into Link Basically href is use to put the link of the tag. But in this case we will put number and message body inside href. Example <a href="sms:987654321&body:hi">Send me message</a> Result Send me message When you click on the hyper link it will take you to the message box. 

Make a call-able link in HTML | Call-able link

How to make a call-able link in HTML Html provide an easy way to make  a call able link. You can add this link to your blog or site.  Thes step will create a call able link.  If you already know about html it is very easy for your.  Create a link using anchor tag <a> In the href area put tel:your number Between <a> and </a> put your your name, number or some text to make it click able.  Example <a href="tel:987654321" >Call me</a> This will show you some thing like that Call me Example <a href="tel:987654321" >9+987654321</a> This will show you some thing like that +987654321 When you click the link it will redirect you to the dial pad and the number will be entered in the log automatically.  Warning Do not use + plus sign in the href with the number. Just simply entered your number and when you click on the link it will redirect you to the dial pad. 

HTML Formatting | HTML 2020

 HTML Formatting If you use Word processing you must know about formatting. Formatting is the process to change the layout of the  documents. Word processing provide us many formatting tools such as bold, italic, strick through etc. Similarly HTML provide its users to do such task with coding. Basic HTML Formatting Elements  The basic elements use for formatting HTML pages are  Bold Italic  Underline  Strick through  So we will define these one by one with examples and showing its output.  Bold  Bold <b> tag is use to bold the text. It begin with <b> and end with </b>. The text between <b> and </b> will be bold. This tag is use when we needed to bold something in our document. You can use more than one <b> tag. Example < html > < head >           < title > Bold </ title > </ head > < body >      < p > This...

Paragraph in HTML | HTML paragraph

 Paragraph In HTML HTML paragraph is use to display paragraph on web page. <p> tag is use for paragraph. Paragraph tag start with <p> and end with </p>. Paragraph is display text. Example < html > < head >           < title > Paragraph </ title > </ head > < body >      < p > This is a simple paragraph </ p > </ body > </ html > Result This is a simple paragraph Horizontal Line in HTML The <hr> tag defines a thematic break in an HTML page. It will draw a horizontal line between two tags. It has no ending tag. Example < html > < head >           < title > Paragraph </ title > </ head > < body >      < p > This is a  < br >  simple paragraph </ p > </ body > </ html > Result...

What is HTML? | HTML 2020

 What is HTML? HTML is stand for H yper T ext M arkup   L anguage. HTML is a Markup language which is used for Web Development. HTML tell the browser how to display a page. HTML use tags start and end tags HTML is not a programming language. How is the Structure of HTML < html > < head >           < title > What is HTML </ title > </ head > < body >      </ body > </ html > <html> is the start tag of HTML and it is end with </html> at the bottom of page. . Every HTML tag is start with <Name of tag> and end with </Name of Tag> The second tag is <head> which is use for providing information about the page such as title etc. <title> tag is use to display the title of the page. it end with </title> The fourth is <body> tag. Whatever we watch on the web page, placed inside the <body> tag. <body> tag is...