What is HTML? Introduction to HTML Codes
What Is HTML? Introduction To HTML Codes Introduction To HTML CODING HTML is a tag language used to create web pages that are viewed in the browser. What is meant by HTML is that a .html file should be viewable by all browsers regardless of whether the visitor is on a PC or Mac. Then it is required that you code correctly. With HTML, you structure your website with the help of tags. For example: If you want to make part of a bold text, start writing <strong> and end with </strong> . or . All tags can be written in capital letters, such as or. All tags are called elements. There are also some options for the different tags. We may want a text to appear in the color red. Then we type <font color = ”red”>My red text </font> . The element we are using now is <font> and it has an attribute called color . Then we write what color we want. An attribute must have a space between the tag name and the attribute name. If we write then it is interpreted incorre...