Question:
What language is used to create HTML?
Mirza Hakimi
2006-12-10 15:53:03 UTC
HTML is used to markup/create web pages. But what programming language is used to create HTML / XML and all those markup languages? When you drill down all the way, what's at the end?
Four answers:
anonymous
2006-12-10 16:04:59 UTC
Yes, BUT in order for you to see the graphics and text on your screen it has to go down to the assembly language in binary 1's and 0's that tells your computer what to do. There's not much else to it.
csanon
2006-12-10 15:57:30 UTC
Nothing. HTML is not connected to programming languages in any way. It's just a way of indicating the meaning of various text. That is when you see

Some Text

, you know Some Text is a heading, and so on.



What is done with HTML is up to various programs. Most common is the web browser, which uses the HTML markup to display a webpage.
edith clarke
2006-12-10 16:21:55 UTC
HTML was first created to just display text, and share it on a network. A basic html file that would display the text "My first web page" in a browser would look like this:





My first web page







html and body are called html tags. According to purists, HTML got contaminated with presentation tags, like h1 for headers, b for bold, i for italic, that were added to make the text "look pretty".



So the organizing body for HTML, the W3C, http://www.w3.org, decided to deprecate or get rid of the presentation tags, and get back to just html tags. That's where CSS, or Cascading Style Sheets come in. They now are used to make text look pretty.



You can buy code generators that will generate HTML and CSS code for you, such as Dreamweaver and FrontPage. There are lots of free ones you can get at http://www.download.com



There are also code "helpers" that assist you with typing in your HTML and CSS code correctly, like Textpad, but there are plenty of free ones available.



XML on the other hand, is very complicated, and there aren't many XML generators available. It also doesn't run in many browsers, since web browsers are set up to recognize HTML and CSS codes, not XML codes. But, as a bridge between the two, the W3C has come up with XHTML, where you still use HTML codes, but formatted in such a way that they'll work well once browsers recognize XML tags.



Hope that helps!
jake cigarâ„¢ is retired
2006-12-10 16:25:17 UTC
any and all languages can create html. it's just a text file.



some do it better than others! perl can generate html from a data structures! php is inside html, and can make more html. similar to javascript.


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...