Web learn
27 subscribers
15 photos
1 video
4 files
73 links
Learn: HTML ,CSS ,JS, C++
Admin: @saparboyevvv_u
Admin: @anv404
Download Telegram
<!DOCTYPE html>
<html>
<head>
<title>forms2</title>
</head>
<body>
<h1>progress school</h1>
<form action="/server.js" method="get">
<label for="user">username</label>
<input type="text" name="userserver" id="user"> <br><br>
<label for="pass">password</label>
<input type="password" name="serverpass" id="pass"><br><br>
<label for="email">Email</label>
<input type="email" name="server email" id="email"><br><br>
<label for="date">Tug'ilgan sanagiz</label>
<input type="date" name="date" id="date"><br><br>
<label for="check">Talaba</label>
<input type="checkbox" name="check" id="check"><br><br>
<label for="che">Ishlayman</label>
<input type="checkbox" name="u" id="che"><br><hr>
<label for="rad">erkak</label>
<input type="radio" name="gender" value="rad"><br>
<label for="radi">ayol</label>
<input type="radio" name="gender" value="radi"><br><br>
<label for="fayl"> fayl malumot</label>
<input type="file" name="umid" id="fayl"><br><br>
<hr>
<label for="tajriba">tajriba yilingiz</label>
<select name="experence" id="tajriba">
<option value="1">1 yil</option>
<option value="2">2 yil</option>
<option value="3">3 yil</option>
<option value="4">4 yil</option>


</select>
<br> <br>
<label for="haqida">siz haqingizda</label> <br>
<textarea id="haqida" name="umidjon" cols="40" rows="12"></textarea> <br>


<button type="submit">registerition</button>


</form>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<style>
.style{
color: aliceblue;
background-color: rgb(11, 21, 155);
text-align: center;
font-size: 20px;
}
header{
height: 100px;
line-height: 100px;
}
nav{
margin-top: 1px;
height: 100px;
line-height: 100px;
}
section{
height: 500px;
margin-top: 1px;
line-height: 500px;
width: 70%;
float: left;
}

aside{
height: 500px;
line-height: 500px;
margin-top: 1px;
width: 30%;
float: left;
}
footer{
height: 100px;
line-height: 100px;
margin-top: 1px;
float: left;
width: 100%;
}
</style>

<title>
layout
</title>
</head>
<body>
<header class="style">
header
</header>
<nav class="style">
nav
</nav >
<section class="style">
selection
</section>
<aside class="style">
aside
</aside>
<footer class="style">
footer
</footer>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>
progress
</title>
<link rel="icon" type="image/jpg" href="ansel/photo_2025-09-10_15-04-16.jpg">
</head>
<body>
<h1>
progress school
</h1>
<div>
<audio controls>
<source src="ansel/music.mp3" type="audio/mp3">

</audio>
</div>
<video controls width="500px" height="450px">
<source src="ansel/IMG_3102.MOV" type="video/mp4">

</video>

</body>
</html>
Deklaratsiya <!DOCTYPE html>ushbu hujjat HTML5 hujjati ekanligini belgilaydi
Element <html>HTML sahifasining ildiz elementidir
Element <head>HTML sahifasi haqidagi meta-ma'lumotni o'z ichiga oladi
Element <title>HTML sahifasi uchun sarlavhani belgilaydi (bu brauzerning sarlavha satrida yoki sahifa yorlig'ida ko'rsatilgan)
Element <body>hujjatning tanasini belgilaydi va sarlavhalar, paragraflar, rasmlar, giperhavolalar, jadvallar, ro'yxatlar va boshqalar kabi barcha ko'rinadigan tarkiblar uchun konteynerdir.
Element <h1>katta sarlavhani belgilaydi
Element <p>paragrafni belgilaydi
HTML elementi nima?
HTML elementi boshlang'ich teg, ba'zi kontent va tugatish tegi bilan belgilanadi:

< tagname > Kontent shu yerda... < /tagname >
HTML elementi boshlang'ich tegdan tortib to tugatish tegigacha bo'lgan hamma narsadir:

< h1 > Mening birinchi sarlavham < /h1 >
< p > Mening birinchi xatboshim. </p>
This media is not supported in your browser
VIEW IN TELEGRAM
Kompyuter injineringi 1-kurs 1-Tajriba ishi 1-topshiriq javoblariπŸ‘‡
1.1#include <iostream>
using namespace std;

int main() {
double x, V;
cin >> x;
V = x * x * x;
cout << V;
}
1.2 #include <iostream>
using namespace std;

int main() {
double r1, r2, r3;
cin >> r1 >> r2 >> r3;
double S1 = 3.14 * r1 * r1;
double S2 = 3.14 * r2 * r2;
double S3 = 3.14 * r3 * r3;
cout << S1 << " " << S2 << " " << S3;
}
3. Teng yonli uchburchak peremetri P berilgan, uchburchak tomoni va yuzini toping
#include <iostream>
#include <cmath>
using namespace std;

int main() {
double P, a, S;
cin >> P;
a = P / 3;
S = sqrt(3) / 4 * a * a;
cout << a << " " << S;
}
4. Tekislikda uchta nuqta A(x1,y1), B(x2,y2), C(x3,y3) berilgan AB va AC nuqtalar orasidagi masofani toping.
#include <iostream>
#include <cmath>
using namespace std;

int main() {
double x1,y1,x2,y2,x3,y3;
cin >> x1 >> y1 >> x2 >> y2 >> x3 >> y3;
double AB = sqrt((x2-x1)*(x2-x1) + (y2-y1)*(y2-y1));
double AC = sqrt((x3-x1)*(x3-x1) + (y3-y1)*(y3-y1));
cout << AB << " " << AC;
}