Flask Viva
Flask Viva
HTML stands for Hyper Text Mark-up Language. It is a language of World Wide
Web. It is a standard text formatting language which is used to create and display
pages on the Web. It makes the text more interactive and dynamic. It can turn text into
images, tables, and links.
HTML tags are composed of three things: an opening tag, content and ending tag.
Some tags are unclosed tags. HTML documents contain two things:
a) content
b) tags
The HTML contains six types of headings which are defined with the <h1> to <h6>
tags. Each type of heading tag displays different text size from another. So, <h1> is
the largest heading tag and <h6> is the smallest one.
The HTML formatting is a process of format the text for a better look and feel. It uses
different tags to make text bold, italicized, and underlined.
HTML elements communicate to the browser to render text. When the elements are
enclosed by brackets <>, they form HTML tags. Most of the time, tags come in a pair
and surround content.
6. What is Flask?
Flask is a micro web framework that provides an API to build up web
applications. Flask’s framework is also easier to learn because of its diversified
working style.
Flask is based on the WSGI (Web Server Gateway Interface) toolkit and the
Jinja2 template engine. It is very flexible to implement a simple web application.
Also, Flask provides visual debugging, which gives more control over the
component.