- HTML Text Formatting
HTML has tags that display text in a special way with having to use CSS. <p>This is <b>bold text</b>.</p> <p>This is <strong>strongly important text</strong>.</p> <p>This is <i>italic text</i>.</p> <p>This is <em>emphasized text</em>.</p> <p>This is <mark>highlighted text</mark>.</p> <p>This is…
- HTML Form
Form method : what http protocol(GET/POST) action: defines the action to be performed when the form is submitted. Usually, this is a url or endpoint of which to process the form autocomplete: autocomplete form novalidate: don’t validate form on submit <form method=”POST” action=”/signup”…
- MySQL INFORMATION_SCHEMA
Information Schema INFORMATION_SCHEMA provides access to database metadata, information about the MySQL server such as the name of a database or table, the data type of a column, or access privileges. Other terms that are sometimes used for this information are data dictionary and system catalog.…
- HTML Introduction
HTML is the standard markup language for creating Web pages. It is the most widely used language on the web. A markup language uses sets of markup tags to characterize text elements within a document, which gives instructions to the web browsers on how the document should appear. Originally, HTML…
- Testing
Resources https://flask.palletsprojects.com/en/1.1.x/testing/