Responsive Web Design tutorial using HTML, CSS and Notepad

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 ธ.ค. 2024

ความคิดเห็น • 115

  • @hannah9051
    @hannah9051 5 ปีที่แล้ว +1

    Hi! "display:inline-block" part isn't working. The three boxes aren't align horizontally :(( pls help

    • @QuickProgramming
      @QuickProgramming  5 ปีที่แล้ว

      ok, here's some code. the minimum requirement to create the effect. copy it and paste in an empty html file, then run it and see. check the code to understand how it works. delete one css line at a time to see what effect it has, then you will understand how it works:
      #small{
      width:180px;
      height:150px;
      background-color:grey;
      display:inline-block;
      margin:10px;
      }
      #big{
      width:650px;
      text-align:center;
      border:solid thin black;
      margin:auto;
      padding:10px;
      }

    • @hannah9051
      @hannah9051 5 ปีที่แล้ว +1

      @@QuickProgramming Thank you!

  • @geetanjalikumari1841
    @geetanjalikumari1841 4 ปีที่แล้ว

    Hey my css page is not working on html page why first style thing is applied but other styles are not applying please help

    • @QuickProgramming
      @QuickProgramming  4 ปีที่แล้ว

      if one style is working but others are not, then there are two reasons:
      1. your browser has cached the css file. to fix this, change the css filename by adding a number at the end, refresh your page twice, just to be sure the cache is flushed. then rename it back to its rightful name. if this doesnt work, then..
      2. there is a spelling error in your css, so check one by one, letter by letter. check whats different with the one that is working vs the one that is not. a simple comma can break things, so be thorough when checking .
      if this doesnt work, inbox me your files on facebook for analysis facebook.com/quickcode

  • @senseicyber5506
    @senseicyber5506 3 ปีที่แล้ว

    The content background is not working

  • @reinaperez3125
    @reinaperez3125 3 ปีที่แล้ว +1

    thanks so much. It's a detailed explanation, you are good teacher.

    • @QuickProgramming
      @QuickProgramming  3 ปีที่แล้ว

      thank you for the compliment and you're very welcome

    • @reinaperez3125
      @reinaperez3125 3 ปีที่แล้ว +1

      @@QuickProgramming thanks to you

  • @kulmiyetechnologyWorld
    @kulmiyetechnologyWorld 3 ปีที่แล้ว +2

    Thanks sir

  • @seshagirideshpande351
    @seshagirideshpande351 4 ปีที่แล้ว +2

    Thanks dude ! You're Epic !!

  • @senseicyber5506
    @senseicyber5506 3 ปีที่แล้ว

    Can we some how link the other menu buttons to other webpages

    • @QuickProgramming
      @QuickProgramming  3 ปีที่แล้ว +1

      website pages connect to each other via links like this one below:
      go to other page

    • @senseicyber5506
      @senseicyber5506 3 ปีที่แล้ว

      @@QuickProgramming can you teach us how to make a contacts webpage

  • @nelsonnegrinho2889
    @nelsonnegrinho2889 5 ปีที่แล้ว +2

    Thank you so much, dude.

  • @phantomvox
    @phantomvox 5 ปีที่แล้ว +1

    thank sooooooooooo much man. Excellent video!

  • @tanishakar9863
    @tanishakar9863 2 ปีที่แล้ว

    sir plz help me...
    how can i add drop down menu

    • @QuickProgramming
      @QuickProgramming  2 ปีที่แล้ว

      copy and paste the code below into an empty document, save it and run it in your browser. it has a menu with dropdowns. add it to your project. you can disable some css one at a time to see what its doing so you understand the code.
      ul{
      font-family: tahoma;
      list-style: none;
      display: flex;
      margin: 0;
      padding: 0;
      }
      ul a{
      text-decoration: none;
      color: white;
      }
      li{
      padding:10px 20px;
      background-color: grey;
      position: relative;
      }
      li:hover{
      background-color: #999;
      }
      li ul li{
      width: 100%;
      }
      li ul{
      display: none;
      position: absolute;
      left: 0;
      }
      li:hover ul{
      display: block;
      }
      .active{
      background-color: #05b505;
      }
      Home
      Dropdown1
      First 1
      Second 1
      Another link 1

      Contact
      Dropdown2
      First 1
      Second 1
      Another link 1

      About us

  • @annnliva
    @annnliva 5 ปีที่แล้ว

    I do everything but neiter the first photo nor the section arears appears on the screen. Everytime I do that: watch the tutorial, pause it and copy word by word... and when I look at the result... I don't know why it happens. For sure I write every letter corectly. I want to say that everything (index.html, styles.css and photos) is in one folder. Is that because my notepad version is old or something like that?

    • @QuickProgramming
      @QuickProgramming  5 ปีที่แล้ว +1

      the notepad version doesnt matter. the photo or styles may not appear because of several reasons.
      1. the file name you typed is not correct. make sure the file extension is also included and correct. e.g a file may have the following extensions, jpg, jpeg, png or tiff. make sure you're using the correct one like this .
      2. same for the stylesheet. make sure the file name is correct plus extension. its easy to write "styles.css" instead of "style.css" and miss the mistake. sometimes the browser may cache the style sheet, meaning when you make changes, they sometimes wont show. you can clear the cache in the browser settings. another way to make sure a file is never cached is to add a query string at the end like this: . changing the 1234 to another random number will make sure the file is reloaded. this can be done for images too.
      overall, since all your files are in one folder, your problem is most likely file names or file extensions. just check them letter by letter to make sure. if the problem continues, try copying all styles to the index file and put them inside style tags like this:
      #body{
      color:#000;
      }
      then you wont need to worry about filenames. hope this helps :)

    • @annnliva
      @annnliva 5 ปีที่แล้ว

      Thank you!

  • @Alex-un4ff
    @Alex-un4ff 5 ปีที่แล้ว

    when i have made the styles css file it doesnt changes anything what can i do?

    • @QuickProgramming
      @QuickProgramming  5 ปีที่แล้ว

      that usually happens if you misspell the css file when linking it. make sure the file name spelling is correct in the index page. also dont forget the file extension of .css. go through the speling letter by letter and make sure you didnt miss anything

  • @JenEFunworks
    @JenEFunworks 5 ปีที่แล้ว

    This was grand! Thanks for the help!

  • @NoLongerStranger
    @NoLongerStranger 4 ปีที่แล้ว

    does notepad++ and notepad have the same codes?

    • @QuickProgramming
      @QuickProgramming  4 ปีที่แล้ว

      notepad++ is better than notepad because its meant to help you in programming. so it has many tools compared to notepad which has none. so for serious programming, you must use notepad++ or something like sublime text

    • @NoLongerStranger
      @NoLongerStranger 4 ปีที่แล้ว

      @@QuickProgramming do u have tutorial creating html and css webdesigns using notepad++

    • @QuickProgramming
      @QuickProgramming  4 ปีที่แล้ว

      @@NoLongerStranger try this playlist. it shows how to design a facebook profile. i use sublime text, but it works the same as notepad++ so you can still use notepad++ to follow along. there are many videos in the playlist but only up to part 14 is HTML, the rest is PHP
      th-cam.com/play/PLY3j36HMSHNWaKUC73RJlwi6oU-WTpTPM.html

  • @25nasar
    @25nasar 4 ปีที่แล้ว

    All worked great until I got to the responsive design mode. I used notepad and can't understand how you got the responsive design mode bar to appear. Please help

    • @QuickProgramming
      @QuickProgramming  4 ปีที่แล้ว

      the responsive mode is inside the browser. what browser are you using?

    • @25nasar
      @25nasar 4 ปีที่แล้ว

      @@QuickProgramming google

    • @QuickProgramming
      @QuickProgramming  4 ปีที่แล้ว +1

      @@25nasar right click on an empty space in the browser. click "inspect". the developer tools will appear. then press "ctrl+shift+m" or just look for the mobile phone icon on the developer tools.

    • @25nasar
      @25nasar 4 ปีที่แล้ว

      @@QuickProgramming will try thank you

  • @nurfalah29
    @nurfalah29 5 ปีที่แล้ว

    I having problems with 13.11 part, please help me

    • @QuickProgramming
      @QuickProgramming  5 ปีที่แล้ว

      is it the part with css? maybe you did not copy the css correctly. take your time and copy everything correctly because if you miss even just one character, it wont work. a missing comma or semicolon is enough to break things :)

    • @nurfalah29
      @nurfalah29 5 ปีที่แล้ว

      @@QuickProgramming I've tried it, and keep repeating that part but still nothing changes.

  • @bhapapathvisutvatanasak9329
    @bhapapathvisutvatanasak9329 4 ปีที่แล้ว

    hey, my html file does not connect to my css! what to do!

    • @bhapapathvisutvatanasak9329
      @bhapapathvisutvatanasak9329 4 ปีที่แล้ว

      XXX







      XXX

    • @bhapapathvisutvatanasak9329
      @bhapapathvisutvatanasak9329 4 ปีที่แล้ว

      body{
      font-fmaily; verdana, tahoma;
      font-size:12px;

      }
      body a{
      text-decoration: none;
      color:#FCE963;
      #wrapper{

      max-width: 800px;
      min-width: 350px;
      margin: auto;
      }
      #main_title{
      font-size:18 px;
      letter-spacing:4px;
      text-align:center;
      }
      #small-menu{
      backgroun-color:#FCE963;
      padding:4px;
      color:#fff;

      }

    • @bhapapathvisutvatanasak9329
      @bhapapathvisutvatanasak9329 4 ปีที่แล้ว

      did I do smt wrong?

    • @bhapapathvisutvatanasak9329
      @bhapapathvisutvatanasak9329 4 ปีที่แล้ว

      they are in the same file btw, my css file name is styles.css

    • @QuickProgramming
      @QuickProgramming  4 ปีที่แล้ว

      this part is missing a closing tag:
      START HERE . Articles. Blog. Contact me!.
      fix that and try again. if that doesnt do it, make sure the styles.css file is in the same folder as the index page, then make sure its name is actuality "styles.css" check each letter one by one to make sure

  • @joelchauhan6736
    @joelchauhan6736 5 ปีที่แล้ว

    hi!
    i am having problem with 20:15 part. i have tried doing this code like 10 times but not working.also when you add the image at 19:24 it is not working. pls help me out.
    BTW i really appreciate the way you are explaining each and every part in such a detail.

    • @QuickProgramming
      @QuickProgramming  5 ปีที่แล้ว +1

      Hey Joel. the image at 19:24 must be in the same folder as your html page. make sure you type its correct name, go through letter by letter to confirm, include the correct file extension too. as of the 20:15 part, could you explain a bit what results you get? do the styles not work completely? or do some work and others dont? if all styles on #info dont work, then make sure the id for the divs is correct. make sure it matches the name in the styles section.
      usually the mistakes with css can be attributed to errors in the ids and names of divs. same thing with images. do a little checking and let me know if the problem continues

    • @joelchauhan6736
      @joelchauhan6736 5 ปีที่แล้ว +1

      hi
      i have worked on this and i think i have figured it out. Thank you so much for your interpretation. :-)

    • @QuickProgramming
      @QuickProgramming  5 ปีที่แล้ว

      @@joelchauhan6736 you're most welcome

  • @elvirkaric1449
    @elvirkaric1449 6 ปีที่แล้ว +1

    Thank you, this was very good!

  • @mc9825
    @mc9825 6 ปีที่แล้ว +2

    big thanks to you man !!

  • @lovleentirkey1620
    @lovleentirkey1620 5 ปีที่แล้ว

    Thank you for your service

  • @vhanessamariedolores6374
    @vhanessamariedolores6374 6 ปีที่แล้ว

    Why i cant let my picture appear, theyre in the same location with the website

    • @QuickProgramming
      @QuickProgramming  6 ปีที่แล้ว

      are they in a folder? if so, then you need to include that folder in their path. e.g if my images are in the same location as the website, but in a folder called "images" the path to my images would be i hope this helps :)

  • @badassbarnes8068
    @badassbarnes8068 5 ปีที่แล้ว

    Thank you! You're the best ❤

  • @breathoftruthoutreachminis1637
    @breathoftruthoutreachminis1637 6 ปีที่แล้ว +1

    Thanks for sharing your video it's inspired me so much that I wish to be come a professional web designer ,I actually tried to create one but the images didn't show up and I don't know what exalt y happened ........please help me out and be my tutor

  • @john-rosscrooks7859
    @john-rosscrooks7859 4 ปีที่แล้ว

    The first html example is not loading but only showing the website name.

  • @itengineering6600
    @itengineering6600 6 ปีที่แล้ว

    sir which of this browser run it.

    • @QuickProgramming
      @QuickProgramming  6 ปีที่แล้ว

      this can run on any browser. in my case, am using firefox

  • @Marcell2810
    @Marcell2810 4 ปีที่แล้ว

    I have problems with the Width:100% part.. I done everything correctly but nothing happens..

    • @QuickProgramming
      @QuickProgramming  4 ปีที่แล้ว

      which part of the video is that? whats the minute and seconds?

    • @Marcell2810
      @Marcell2810 4 ปีที่แล้ว

      Thanks for the help😀 Look at the Facebook.. Because I need the "buttons" work😀 Do you have a video for that?

  • @sulamiteandres4506
    @sulamiteandres4506 5 ปีที่แล้ว

    I need your help.. I can't put the photo

    • @QuickProgramming
      @QuickProgramming  5 ปีที่แล้ว

      a photo is added like this:
      replace image.jpg with the name of your image. make sure the image is in the same folder as the home page and make sure you type the file extension correctly, e.g .jpg or .png

  • @Biss_Chhakchhuak
    @Biss_Chhakchhuak 4 ปีที่แล้ว +1

    Sir, first of all I'd like to thank you for making this amazing videos. However, i have a problem regarding hyperlink. I could not make those menu buttons into hyperlink. I dont even know whether it needs to be done from css or html page. Could you please provide me the correct syntax and where do we need to type those codes. Thank you....all the way from India👍

    • @QuickProgramming
      @QuickProgramming  4 ปีที่แล้ว +1

      Thank you for the compliment. a hyperlink is easy. it needs to be done from the HTML page. all functionality is done in the HTML page. here is an example of a link:
      Click here
      if you copy this to you page, it will take you to page2.html when you click. just make sure its in the same folder as home page

    • @Biss_Chhakchhuak
      @Biss_Chhakchhuak 4 ปีที่แล้ว

      @@QuickProgramming sir, I have been using the same tag. But i think its the place that's wrong. Eg. About us it just dispositioned all the other objects.
      By the way, i have put all these within div tag.

    • @QuickProgramming
      @QuickProgramming  4 ปีที่แล้ว +1

      @@Biss_Chhakchhuak make sure all you page names dont have spaces. change About us to "About_us". always use underscore instead of a space. eve if they are inside DIVs, they should work. the

    • @Biss_Chhakchhuak
      @Biss_Chhakchhuak 4 ปีที่แล้ว +1

      @@QuickProgramming Its working perfect,,thank you so much. I wish you make another video like the continuation of this web site all the way from creating those button page to actually making it online. Anyway, i hope to see another video from you. Thanks again for your kindness.

    • @QuickProgramming
      @QuickProgramming  4 ปีที่แล้ว +1

      @@Biss_Chhakchhuak thanks. i'll make a series of videos to show how to do that soon

  • @kingfrk2738
    @kingfrk2738 4 ปีที่แล้ว

    Can i have the source codes for this

  • @Nina-qw2xi
    @Nina-qw2xi 6 ปีที่แล้ว

    Css is not working. The file name is correct why is it not working? Please reply ASAP thanks

    • @QuickProgramming
      @QuickProgramming  6 ปีที่แล้ว

      am not sure what would be the problem. maybe its the ids of elements are not correct. check to make sure you named everything correctly. try and copy the styles into the same index file, so that you see if it has anything to do with file location or name

    • @Nina-qw2xi
      @Nina-qw2xi 6 ปีที่แล้ว

      Hi when I save the .html the .html is not written is it okay?

    • @Nina-qw2xi
      @Nina-qw2xi 6 ปีที่แล้ว

      Idk how to link them

    • @QuickProgramming
      @QuickProgramming  6 ปีที่แล้ว

      @@Nina-qw2xi do it like this: first create an index.html file. even if the .html doesnt show, its ok because the computer hides it. then in the same folder, create a css file called css.css and add your styles in there. then inside index file, add this line this is all it takes to link the files. in case your css file is named "styles.css" check to see if you havent written "styles" as 'style" coz ive done that before several times

    • @Nina-qw2xi
      @Nina-qw2xi 6 ปีที่แล้ว

      Last question how can I put a picture?

  • @nurainasyiqin2606
    @nurainasyiqin2606 4 ปีที่แล้ว

    Why my header cannot be a small

    • @QuickProgramming
      @QuickProgramming  4 ปีที่แล้ว

      it means your styles are not working on it. are the styles working on everything else?

    • @nurainasyiqin2606
      @nurainasyiqin2606 4 ปีที่แล้ว

      @@QuickProgramming btw I forgot to put "header" at html file. And problem had solved.. thank you for the video

    • @nurainasyiqin2606
      @nurainasyiqin2606 4 ปีที่แล้ว

      Yes the styles working on everything else.

    • @QuickProgramming
      @QuickProgramming  4 ปีที่แล้ว

      @@nurainasyiqin2606 ok copy and paste the header tag and its style here. maybe i can spot the problem. or you send me a message on facebook with all the code facebook.com/quickcode

    • @nurainasyiqin2606
      @nurainasyiqin2606 4 ปีที่แล้ว

      @@QuickProgramming it's okay, thank you. I had solved my problem.

  • @jigishamettapalli9543
    @jigishamettapalli9543 5 ปีที่แล้ว

    hii i got a problem with the css code please help me

    • @QuickProgramming
      @QuickProgramming  5 ปีที่แล้ว

      what kind of problem are you having?

    • @jigishamettapalli9543
      @jigishamettapalli9543 5 ปีที่แล้ว

      when i am running the .css code i am not getting any output

    • @jigishamettapalli9543
      @jigishamettapalli9543 5 ปีที่แล้ว

      written it in the same way as how you have given

    • @QuickProgramming
      @QuickProgramming  5 ปีที่แล้ว +1

      if you were getting some output the first time you wrote it but not anymore, it means the browser is caching the css file. so all changes wont show. you may have to change its file name and try again. but if you never got any output even the first time, then make sure the css file is in the same folder as your index page.
      also make sure the file name is the same name you're referencing in the index file. even one letter wrong it wont work, so check letter by letter to make sure. let me know if it works

    • @QuickProgramming
      @QuickProgramming  5 ปีที่แล้ว

      if you were getting some output the first time you wrote it but not anymore, it means the browser is caching the css file. so all changes wont show. you may have to change its file name and try again. but if you never got any output even the first time, then make sure the css file is in the same folder as your index page.
      also make sure the file name is the same name you're referencing in the index file. even one letter wrong it wont work, so check letter by letter to make sure. let me know if it works

  • @kenkensoroten9171
    @kenkensoroten9171 6 ปีที่แล้ว +1

    the html works but css did not for me

    • @QuickProgramming
      @QuickProgramming  6 ปีที่แล้ว

      if you're using an external css file, make sure you've typed the file name correctly and its in the same folder as the index file. if that fails, copy a few styles to the index page to see if they work

    • @aaaciss2023
      @aaaciss2023 5 ปีที่แล้ว

      Same problem

  • @laovoyage
    @laovoyage ปีที่แล้ว +1

    Good

  • @tanishakar9863
    @tanishakar9863 2 ปีที่แล้ว

    sir plz help me😢

  • @redognita1515
    @redognita1515 4 ปีที่แล้ว

    please sent all codes

  • @CrazyGamerEmonJ
    @CrazyGamerEmonJ 6 ปีที่แล้ว

    menu works

  • @ponpon____
    @ponpon____ 5 ปีที่แล้ว

    9:35

  • @BucurIonNiculae
    @BucurIonNiculae 3 ปีที่แล้ว

    Jesus Notepad in 2017?

    • @QuickProgramming
      @QuickProgramming  3 ปีที่แล้ว +1

      Notepad is actually too advanced. I normally use the command line when I work. Only newbies fight over what IDE to use. Learn to use anything at your disposal

  • @spyders4445
    @spyders4445 2 ปีที่แล้ว

    J

  • @CrazyGamerEmonJ
    @CrazyGamerEmonJ 6 ปีที่แล้ว +1

    menu works