-
Notifications
You must be signed in to change notification settings - Fork 0
/
Css.html
53 lines (50 loc) · 2.24 KB
/
Css.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<DOCTYPE html>
<!-- Web saytning boshlangich qismi -->
<html>
<head>
<style>
h1{
opacity: 0.8;
color:blue;
text-align: center;
font-weight:normal;
}
p{
color: orange;
text-align: right;
opacity: 1;
font-size: medium;
}
</style>
<title style="color:RED;">STYLE</title>
<body>
<!-- Veb sayt haqida ma'lumotlar berilgan-->
<H1 style="opicity: 0.87em;color:aquamarine ; text-align:center">Paragraphs<br></H1>
<H2 style="color:darkblue"; font-weight="bold">Web sayt nima?</H2>
<p>Vebsayt (boshqa variantlari: veb-sayt, veb sayt, website, web site yoki shunchaki sayt; <br>
inglizcha: web — „toʻr“ va site — „joy“) deb kompyuter tarmogʻidagi bir elektron manzilda <br>
joylashgan elektron hujjatlar majmuiga aytiladi. Elektron manzil domen yoki IP shaklida <br>
boʻladi. Vebsaytni veb sahifadan farqlash lozim: veb sahifa vebsaytdagi sahifalardan biri,<br>
xolos.</p>
<hr>
<!-- Veb saytni qanday qilib yasash mumkinligi -->
<h2 style="color: brown;">Web sayt qanday yasaladi?</h2>
<p style="font-weight: bold;">
Web sayt asosan <b>HTML, Css, Bootstrap, JavaScript, JAvaScript framework <br>
PHP, PHP framework, MSQL</b> tillari yordamida yasaladi.
</p>
<hr>
<h2 style="text-align: center; color: cornflowerblue;">Matnni formatlash</h2>
<!--Matnlarni farmatlash uchun teglar haqida malumotlar -->
<p>
Htmlda matnni formatlashda quyidagi elemet (Teg)lardan foydalaniladi:<br>
bular:<br>
<b>Bold</b> ya'ni qalin tegi "b"<br>
<i>Italic</i>i> shriftni o'ng tomonga yotiqroq qiluvchi teg: "i"<br>
<del>Shriftning</del> ustiga chizish "del" tegidan foydalaniladi. <br>
indeksga<sub>yozish</sub> uchun "sub" tegi ishlatiladi. <br>
darajaga<sup>yozish</sup> uchun "sup" tegi qo'llaniladi.
</p>
</body>
</head>
</html>