Category: HTML Tutorial

  • HTML URL Encode

    What is URL? URL stands for Uniform Resource Locator. It is actually a web address. A URL can contain words i.e. (javatpoint.com) or an Internet Protocol (IP) address i.e.195.201.68.81. But most of the user use URL in the form of words because it is easy to remember than numbers. Syntax of a URL: Here, Following…

  • HTML Symbols

    There are many mathematical, technical and currency symbols which are not present on a normal keyboard. We have to use HTML entity names to add such symbols to an HTML page. If there no entity name exists, you can use an entity number, a decimal, or hexadecimal reference. Example: Mathematical Symbols Supported by HTML Char…

  • Entities in HTML

    What is Entity? A text fragment (or “string”) that starts with an ampersand (&) and ends with a semicolon (;) is known as an HTML entity. Entities are widely used to show unseen characters, such as non-breaking spaces and reserved characters, which would be read as HTML code. Additionally, you may substitute them for other…

  • HTML Computer code

    When we are programming, sometimes it is mandatory to show the Output result, error message, or coding part to user on a webpage. Hence to solve this issue HTML uses different tags for the user inputs, codes, programs, etc. With the help of these tags, you will be able to write codes to display on…

  • HTML Responsive

    Responsive Web design Responsive web design is used to make your web page look appropriate, good, and well placedon all devices (desktop, tablet, smartphone etc.) Responsive web design uses HTML and CSS to resize, hide, shrink, enlarge, or move the content. It makes the content look good on any screen. Set the viewport Let’s see…

  • HTML Layout Techniques

    Creating layouts are the most important things while designing a website, as it will ensure that your website looks in a well-arranged way and the content appears easy to understand. There are various techniques, and frameworks available for creating layouts, but here we will learn about simple techniques. You can use the following methods to…

  • HTML Layouts

    HTML layouts provide a way to arrange web pages in well-mannered, well-structured, and in responsive form or we can say that HTML layout specifies a way in which the web pages can be arranged. Web-page layout works with arrangement of visual elements of an HTML document. Web page layout is the most important part to keep…

  • HTML Head

    The HTML <head> element is used as a container for metadata (data about data). It is used between <html> tag and <body> tag. The head of an HTML document is a part whose content is not displayed in the browser on page loading. It just contains metadata about the HTML document which specifies data about…

  • HTML File Paths

    An HTML file path is used to describe the location of a file in a website folder. File paths are like an address of file for a web browser. We can link any external resource to add in our HTML file with the help of file paths such as images, file, CSS file, JS file,…

  • HTML Comments

    Comments are some text or code written in your code to give an explanation about the code, and not visible to the user. Comments which are used for HTML file are known as HTML comments. Anything written between these tags will be ignored by the browser, so comments will not be visible on the webpage.…