- 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”…
- Elasticsearch – Analyzers and Text Analysis
Almost every “why does my search return nothing?” is one bug: the analyzer that ran when the document was indexed and the analyzer that ran on the query disagreed, so the terms never matched. What an analyzer is made of, the _analyze API that shows you the tokens instead of making you guess, building a custom one, and the two classic traps — keyword fields are not analysed at all, and changing an analyzer does nothing to documents already indexed.
- 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…