Author: egensoftwares.com

  • HTML-What Is DOCTYPE Tag

    HTML-What Is DOCTYPE Tag

    On the HTML document you have often seen that there is a <!DOCTYPE html> declaration before the <html> tag. HTML <!DOCTYPE> tag is used to inform the browser about the version of HTML used in the document. It is called as the document type declaration (DTD). Technically <!DOCTYPE > is not a tag/element, it just…

  • What is python?

    What is python?

    Python is an interpreted high-level general-purpose programming language. Its design philosophy emphasizes code readability with its use of significant indentation. Its language constructs as well as its object-oriented approach aim to help programmers write clear, logical code for small and large-scale projects. python is dynamically-typed and garbage-collected. It supports multiple programming paradigms, including structured (particularly,…

  • HTML Block and Inline Elements

    HTML Block and Inline Elements

    There are two display values: block and inline. Block-level Elements A block-level element always starts on a new line. A block-level element always takes up the full width available (stretches out to the left and right as far as it can). Inline Elements An inline element does not start on a new line. An inline…

  • HTML-Elements

    HTML-Elements

  • HTML-Basic Tags

    HTML-Basic Tags

  • HTML Introduction

    HTML Introduction

    HTML – Introduction HTML stands for Hypertext Markup Language, and it is the most widely used language for creating Web pages. HTML is the standard markup language for creating Web pages. HTML describes the structure of a Web page HTML elements tell the browser how to display the content HTML is being widely used to format…