answersLogoWhite

0

Is HTML recommended

User Avatar

Anonymous

12y ago
Updated: 8/20/2019

HTML is what is used to create web pages, so it is recommended that you use it to do so. The standard for HTML is set by the World Wide Web Consortium, and the makers of browsers and other internet technology providers are meant to follow the standards and recommendations of the World Wide Web Consortium for all aspects of the internet, not just HTML.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What are the HTML codes for effects?

You can use for bold, for example, but it is recommended that you use CSS adding styles and formatting to your HTML.


Is it possible to place buttons in a purely HTML page?

That would be most recommended to put buttons in html page. Adding a button using scripts both client and server side is not recommended


What is the recommended weight for a woman of 5'3''?

Hope this helps. http://dietbites.com/article1023.html


What is the recommended 60000 mile service for a 2005Honda civic?

http://www.driveaccord.net/forums/archive/index.php/t-7755.html


How can you insert javascript into an HTML document?

Here are two examples of internal and external calling of javascriptInternal Calling (Not Recommended)// Your javascript code ehreExternal Calling (Recommended)


What are the most doctor-recommended acid reflux remedies?

Proton Pump Inhibitors such as Prilosec, Prevacid and Nexium are the most often doctor-recommended acid reflux remedies. http://www.foxnews.com/story/0,2933,412202,00.html


How do we rate html as a tool in web development?

Html is not a tool, rather it is a markup language. It is the standard markup language for creating Web pages. A simple text editor like Notepad (PC) or TextEdit (Mac) is recommended for learning HTML. All I can say, it is super easy to learn and use too.


Differentiate HTML tag from an HTML documents?

HTML tags are used to delimit HTML elements inside an HTML document.


What are HTML tags what are the required HTML tags in creating webpages describe what these tags do?

HTML tags are like containers for content. They tell how the content should be displayed. Tags in HTML should be enclosed with < and >. Most tags consist of an opening tab ie <HTML> and a closing tag ie </HTML>. The proper action is then taken concerning the content in between them. There are many tags that can be used, however very few are required. It is recommended that all HTML pages begin with the <HTML> tag, and end with the corresponding closing tag </HTML>. For example: <HTML> <head> info here is for the browser, not displayed to the user </head> <body> this is where the page content goes </body> </HTML> I've found w3schools to be very helpful in learning HTML. A few other useful tags include: <form></form> (for making forms), <table></table> (for tables, with <tr> and <td> to make rows and columns respectively), <h1></h1> (the largest header), and <p></p> (a paragraph.)


How do you prepare an HTML?

The basic HTML base to a HTML website is <HTML> <title> </title> <head> </head> <body> </body> </HTML>


How can I obtain a new fire extinguisher?

To get a new fire extinguisher the following locations are recommended. They are: www.amazon.com , www.homedepot.com , www.nyc.gov/html/fdny/pdf/fire_prevention/pfe.pdf , and www.lowes.com .


How do you put HTML in PHP?

Its done exactly the same as when you put it in an HTML file. There are 2 ways you can do it: <html> <?php // php stuff ?> </html> Or you can do it like this: <?php echo "<html>"; // php stuff echo "</html>"; ?>