Bootstrap Tutorial In Hindi

Bootstrap Tutorial In Hindi

CodeWithHarry

4 года назад

2,175,632 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

CodeWithHarry
CodeWithHarry - 08.05.2020 13:30

Thanks for all the love and support to this video. Make sure to take the source code from GitHub as instructed in the video.
Many people are asking for making the contact form work, for that you can watch my php, NodeJs, Django, Flask or some other backend series.
Should I upload another bootstrap project? If yes which one?

Ответить
Baba_Sports_47
Baba_Sports_47 - 15.11.2023 17:59

mai pakistan ki city lahore sai aap ki video daikh rha love you harry bhai aap ki video kamal ki hai

Ответить
Shortcut
Shortcut - 14.11.2023 21:47

Plss add quality

Ответить
Irfana Naaz
Irfana Naaz - 14.11.2023 20:26

Really appreciate your teaching and time for teaching us. Thanks for teaching....Seedhaa padahii kartein no backwass

Ответить
Asmat Ullah
Asmat Ullah - 14.11.2023 08:57

I am from Pakistan

Ответить
Mehvish Ismail
Mehvish Ismail - 13.11.2023 10:42

m ny complete video dekhi ..complete page bnaya yh or host kiya .Thank you sir❤

Ответить
HUZAIFA HUZAIFA
HUZAIFA HUZAIFA - 11.11.2023 21:14

Pore Video Deki ha Harry Bhai❤🔥❤🔥❤🔥❤🔥

Ответить
Anunay Sagar
Anunay Sagar - 11.11.2023 17:26

Jharkhand

Ответить
Sweet Hindi Speech
Sweet Hindi Speech - 10.11.2023 16:23

Video pura dekha hai

Ответить
Vinay Bhagat
Vinay Bhagat - 10.11.2023 13:05

great tutorial by great teacher

Ответить
gOKU
gOKU - 08.11.2023 22:54

from haryana

Ответить
YJ secret
YJ secret - 08.11.2023 09:38

kot addu Pakistan

Ответить
parth 04
parth 04 - 06.11.2023 16:07

Watched the complete video, thanks a lot brother for this user-friendly course for learning fundamentals of Bootstrap framework. All the hard work and the efforts behind this video is greatly appreciated. Moving on to the Web Dev Course of yours now! Thanks again.

Ответить
Game On
Game On - 04.11.2023 14:33

Good explanation Harry bhai 😊

Ответить
Rahul  Gangwar
Rahul Gangwar - 04.11.2023 09:10

Respect from Bareilly

Ответить
N Harish
N Harish - 04.11.2023 07:25

I watched full video😊 sir

Ответить
Vidhi Sharma
Vidhi Sharma - 02.11.2023 18:28

thankyouuuuuu sir, it helped a lot !!! please keep uploading this kind of videos .

Ответить
Syed Hammad Vlogs
Syed Hammad Vlogs - 01.11.2023 21:28

harry bhai images ka link do yr nh mil rhi plz

Ответить
ZoHAiB RaJ
ZoHAiB RaJ - 01.11.2023 17:05

I watch full video, thank you so much

Ответить
Ranjeet Bunkar
Ranjeet Bunkar - 30.10.2023 19:53

I am from in nagod Satna (MP)

Ответить
Krish Bhad
Krish Bhad - 29.10.2023 10:42

Ответить
Anurag Gupta
Anurag Gupta - 27.10.2023 20:14

Watched full video. Thanks for explaining Bootstrap so nicely.

Ответить
AxTiGeR Gaming
AxTiGeR Gaming - 26.10.2023 22:30

I watched it completely This is very helpful for me its make very easy my life to create a layout of any website❤🎉

Ответить
M Ayman
M Ayman - 25.10.2023 08:44

Here's an example of a webpage that accepts the mentioned data from the user and uses JavaScript for client-side data validation:

```html
<!DOCTYPE html>
<html>
<head>
<title>Data Validation</title>
</head>
<body>

<h2>Data Validation</h2>

<form action="/submit" method="post" onsubmit="return validateForm()">
<label for="name">Name (Max. 50 characters):</label>
<input type="text" id="name" name="name" maxlength="50" required><br><br>

<label for="enrollment">Enrollment Number (11 digit):</label>
<input type="text" id="enrollment" name="enrollment" pattern="[0-9]{11}" required><br><br>

<label for="mobile">Mobile Number (10 digit):</label>
<input type="tel" id="mobile" name="mobile" pattern="[0-9]{10}" required><br><br>

<label for="subject">Subject Code (7 Characters):</label>
<input type="text" id="subject" name="subject" pattern="[A-Za-z0-9]{7}" required><br><br>

<label for="email">Email Address:</label>
<input type="email" id="email" name="email" required><br><br>

<input type="submit" value="Submit">
</form>

<script>
function validateForm() {
var name = document.getElementById("name").value;
var enrollment = document.getElementById("enrollment").value;
var mobile = document.getElementById("mobile").value;
var subject = document.getElementById("subject").value;
var email = document.getElementById("email").value;

// Validation for Name
if (name.length > 50) {
alert("Name should be a maximum of 50 characters.");
return false;
}

// Validation for Enrollment Number
if (!/^\d{11}$/.test(enrollment)) {
alert("Enrollment Number should be 11 digits.");
return false;
}

// Validation for Mobile Number
if (!/^\d{10}$/.test(mobile)) {
alert("Mobile Number should be 10 digits.");
return false;
}

// Validation for Subject Code
if (!/^[A-Za-z0-9]{7}$/.test(subject)) {
alert("Subject Code should be 7 alphanumeric characters.");
return false;
}

// Validation for Email Address (basic format check)
if (!/^\S+@\S+\.\S+$/.test(email)) {
alert("Please enter a valid Email Address.");
return false;
}

return true;
}
</script>

</body>
</html>
```

This code creates a form with fields for Name, Enrollment Number, Mobile Number, Subject Code, and Email Address, with client-side JavaScript validation to ensure that the data meets the specified criteria.

Ответить
Akshay Kr. 25
Akshay Kr. 25 - 24.10.2023 20:16

After 3 I watched full video

Ответить
BOT BROKEN YT
BOT BROKEN YT - 24.10.2023 15:31

Thank you for this useful hosting video! Ive checked out Hostwinds and Hostinger, however Cloudways with TST20 couppon is game-changer.

Ответить
Zee Dott
Zee Dott - 22.10.2023 23:35

Harry bhi main Video pori dykhi😍

Ответить
Muhammad Ahmad
Muhammad Ahmad - 22.10.2023 20:27

I watched the full Video. Your method of teaching is amazing. thank you for making this video.

Ответить
Anubhav Negi
Anubhav Negi - 22.10.2023 11:44

Harry bhaiya watched the full video. It was really helpful. At first I was really confused about it, but I can confidently use Bootstrap. Bhaiya will always remember you for all the knowledge you share with us. Thank You.

Ответить
Md Kabir
Md Kabir - 21.10.2023 23:12

I have completed whole video
Thank you for the tutorial

Ответить
Manish Kumar
Manish Kumar - 21.10.2023 13:38

Pura video dekha hai Harry bhai

Ответить
faisal iqbal
faisal iqbal - 21.10.2023 10:47

or ma na wo nahi kara ma na ap ka sare moves kare lekin wo to hona ka nam nahi la raha tha please who part phir karo agli video me please please please

Ответить
faisal iqbal
faisal iqbal - 21.10.2023 10:44

Harry bhai mujhe login or sign up wala part samajh nahi aaya

Ответить
Ehtisham Tayyab
Ehtisham Tayyab - 21.10.2023 03:34

The only words i say ❤️
Love you so much brother 💕
You make my every problem easier ❤
You make my mind open from all misunderstanding ❤
Your video is prefect , your talking way , your voice, everything prefect❤
God bless you brother ❤
Thankyou so much ❤️

Ответить
vishal sonawane
vishal sonawane - 20.10.2023 23:03

❣ Thank you sir

Ответить
vishal sonawane
vishal sonawane - 20.10.2023 23:02

Watch full video

Ответить
Fiza Asif
Fiza Asif - 20.10.2023 19:43

AOA! sir Thanks for the amazing Bootstrap tutorial in 1 shot! Completed the entire video and also practiced hands-on. Great work Sir harry keep going. I am from(Lahore Pakistan)

Ответить
priyanshu singh
priyanshu singh - 20.10.2023 12:10

best

Ответить
Snacks lovers
Snacks lovers - 19.10.2023 22:40

I see complete tutorial 🫰 very helpful Harry bhai🤟🫰 Thanks a lot

Ответить
Syed Ali Hamad Gilani
Syed Ali Hamad Gilani - 18.10.2023 08:23

I am from pakistan. i like the way you teach very much

Ответить
Priyanka Patel
Priyanka Patel - 17.10.2023 08:46

thank you harry bhai for this tutorial ...it was helpfull for me🙏💖

Ответить
WonderWhy
WonderWhy - 15.10.2023 16:07

thank see full video

Ответить
Janki Dhandhukiya
Janki Dhandhukiya - 15.10.2023 11:37

thank you harry bhai....

Ответить
Malik Nasir
Malik Nasir - 15.10.2023 03:19

Muhammad Sheraz
From : Pakistan

Ответить
Coding with@p
Coding with@p - 14.10.2023 18:21

thank you so much❤

Ответить
sarvjeet barwal
sarvjeet barwal - 13.10.2023 10:11

Thnku harri bhai

Ответить
Lashkari Uday
Lashkari Uday - 12.10.2023 09:42

wach full video and i enjoy and learn bootsrtap in easy way

Ответить
Luqman Ch
Luqman Ch - 11.10.2023 19:53

Yes I will watch full Video 😍

Ответить
Shreeyansh Jain
Shreeyansh Jain - 09.10.2023 15:29

Harry bhai thanku for this amazing video.
But aap kabhi-2 bhool jate ho ki aap padare ho aur apna fast coding krte ho jise samjhna impossible sa hojata hai baaki you are good.

Ответить