How to create a mvc project in asp.net (Visual Studio)
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjpAUp2i6EgTnhTHskrfW6PCJu2T0Iqgb58O0Acc_yC4D61tqmGK9D0JYXSs1QgknGlHshHI2Yf0FAy80HhfBoVBRZ00iGHX7fkDEnnDFo9DslqmksC2l1PQ-Fgazfnt6OFU18Tp3Xy6una/w640-h454/Screenshot+%25281%2529.png)
HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content. For example, content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables. As the title suggests, this article will give you a basic understanding of HTML and its functions.
HTML is not a programming language; it is a markup language that defines the structure of your content. HTML consists of a series of elements, which you use to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way. The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on. For example, take the following line of content:
I love programming
If we wanted the line to stand by itself, we could specify that it is a paragraph by enclosing it in paragraph tags:
<p>I love programming</p>
Comments
Post a Comment