- HTML Lists
Ordered List <div class=”row”> <div class=”col-3″> <h3>Ordered List</h3> </div> <div class=”col-9″> <ol> <li>Apple</li> <li>Mango</li> <li>Banana</li> </ol> </div> </div> Unordered List <div class=”row”> <div class=”col-3″> <h3>Unordered List</h3> </div> <div class=”col-9″> <ul> <li>Apple</li>…
- HTML Elements
An HTML element is defined by a start tag, some content, and an end tag. An HTML element is defined by a start tag, some content, and an end tag: Note that some HTML elements have no content (like the <br> element). These elements are called empty elements. Empty elements do not have an end […]
- 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.