<header>
tag defines the header of a document or section.
Nav: The <nav>
tag defines a navigation bar.
Section: The <section>
tag defines a section of a document.
Article: The <article>
tag defines an independent piece of content, such as a blog post or news article.
** aside:** The <aside>
tag defines a sidebar or other secondary content.
Footer: The <footer>
tag defines the footer of a document or section.
figure: The <figure>
tag defines a self-contained piece of content, such as an illustration, diagram, photo, code listing, etc.
figcaption: The <figcaption>
tag defines a caption for a figure.
h1-h6: The <h1>
through <h6>
tags define headings of different levels.
main: The <main>
tag defines the main content of a document.
a: The <a>
tag defines a hyperlink.
form: The <form>
tag defines a form.
input: The <input>
tag defines an input field.
img: The <img>
tag defines an image.
blockquote: The <blockquote>
tag defines a quotation.
time: The <time>
tag defines a date or time.
mark: The <mark>
tag defines a highlighted passage of text.
b: The <b>
tag defines bold text.
strong: The <strong>
tag defines strong text.
em: The <em>
tag defines emphasized text.
code: The <code>
tag defines code snippets.
pre: The <pre>
tag defines preformatted text.<p>This is a <b>bold</b> text.</p>
<strong> - Important text // Has semantic meaning
<p>This is an <strong>important</strong> point to remember.</p>
<i> - Italic text
<p>This is <i>italic</i> text.</p>
<em> - Emphasized text // Has semantic meaning
<p>This is <em>emphasized</em> text.</p>
<mark> - Marked text
<p>Please <mark>review</mark> the important points in the document.</p>
<small> - Smaller text
<p>This is some <small>additional information</small> about the topic.</p>
<del> - Deleted text
<p>I changed my mind and <del>don't</del> want to go to the party.</p>
<ins> - Inserted text
<p>I <ins>really</ins> enjoyed the movie.</p>
<sub> - Subscript text
<p>H2O is the chemical formula for water, where 2 is written as H<sub>2</sub>O.</p>
<sup> - Superscript text
<p>The area of a circle is calculated using the formula A = πr<sup>2</sup>.</p>
<s> - Strikethrough
<p>This product is currently <s>out of stock</s>.</p>
<u> - Underline:
<p><u>This text is underlined.</u></p>
<br> - Break
<p>This is the first line.<br>This is the second line.</p>
<pre> - Preformatted:
<pre>
function sayHello() {
console.log("Hello, world!");
}
</pre>
Summary of semantical meaning tags:
Tags with Semantic Meaning:
<strong>
<em>
Tags without Semantic Meaning:
<b>
<I>
<mark>
<small>
<del>
<ins>
<sub>
<sup>
<s>
<u>
<be>
<pre>
git init
დირექტორიაში გადასასვლელად ვიყენებთ
cd (ფაილის დასახელებას ვწერთ)
იმისათვის რომ ვნახოთ ფაილების ჩამონათვალი გარკვეულ დირექტორიაში ვიყენებთ ამ ბრძანებას: ls
და ls -la
git config --global user.name "სახელი გვარი"
მოცემული ბრძანებით მივუთითებთ ჩვენს სახელს და გვარს
git config --global user.email "MY_NAME@example.com"
მოცემული ბრძანებით მივუთითებთ ჩვენს ელფოსტას
git config --list
მოცემული ბრძანებით გვიჩვენებს კონფიგურაციის ყველა პარამეტრს<?php
$alpha = range('A', 'Z');
for( $i = 0; $i < 26; $i++ ) {
for( $k = 26; $k > $i ; $k-- ){
echo $alpha[$i];
}
echo "\n";
}
result
AAAAAAAAAAAAAAAAAAAAAAAAAA
BBBBBBBBBBBBBBBBBBBBBBBBB
CCCCCCCCCCCCCCCCCCCCCCCC
DDDDDDDDDDDDDDDDDDDDDDD
EEEEEEEEEEEEEEEEEEEEEE
FFFFFFFFFFFFFFFFFFFFF
GGGGGGGGGGGGGGGGGGGG
HHHHHHHHHHHHHHHHHHH
IIIIIIIIIIIIIIIIII
JJJJJJJJJJJJJJJJJ
KKKKKKKKKKKKKKKK
LLLLLLLLLLLLLLL
MMMMMMMMMMMMMM
NNNNNNNNNNNNN
OOOOOOOOOOOO
PPPPPPPPPPP
QQQQQQQQQQ
RRRRRRRRR
SSSSSSSS
TTTTTTT
UUUUUU
VVVVV
WWWW
XXX
YY
Z<meta name="viewport" content="width=device-width, initial-scale=1">
width=device-width
- sets the width of the viewport to be equal to the width of the device's screen. This ensures that the webpage adapts and fills the entire width of the device, regardless of its specific screen size or resolution. CSS media query
works properly with any device by setting device width to viewport
initial-scale=1
- sets the initial zoom level when the webpage is first loaded. A value of 1 means that the webpage will be displayed at a 1:1 ratio, without any zooming or scaling appliedphp artisan route:cache
This command will generate a cached version of our routes.
Once the routes are cached, Laravel
will use the cached version instead of parsing and compiling the routes on each request, which helps to improve the overall performance of your application
When we make changes to our routes, we need to regenerate it to reflect the updated routes
php artisan route:clear
This command will remove the cached routes, and the application will revert to parsing and compiling the routes dynamically