Posts

PYTHON FULL NOTES BY SHAYAN

 From here, you can download full python notes for free:- https://drive.google.com/drive/folders/1IqwSHcc79VKREaKEy0UgVG1OETiNFJI8?usp=sharing NOTE: If  the link is greyed out then please long press until the link is selected then click on open, and                        T hen open in GOOGLE DRIVE. I have extracted this notes from after so many researches.  So, please go through it And give your FEEDBACK. HAVE A NICE DAY!!! You can also join us on TELEGRAM:-     https://t.me/codingislife15 NOTE: If  the link is greyed out then please long press until the link is selected then click on open, and                 T hen open in TELEGRAM

HTML - 15: META TAGS

 IN THIS TUTORIAL, WE WILL LEARN ABOUT META TAGS: <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     < meta name = "description" content = "your description" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > SHAYAN'S WEBSITE </ title > </ head > < body >     < h1 > Meta Tags </ h1 > </ body > </ html >

HTML - 14: IFRAMES

 IN THIS TUTORIAL, WE WILL LEARN ABOUT IFRAMES: <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > SHAYAN'S WEBSITE </ title > </ head > < body >     < iframe src = "http://codingwithshayan.blogspot.com/" frameborder = "0" width = "1000" height = "800" > sorry </ iframe > </ body > </ html >

HTML - 13: INPUT FORMS

 IN THIS TUTORIAL, WE WILL LEARN ABOUT  INOUT FORMS: <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > SHAYAN'S WEBSITE </ title > </ head > < body >     < input type = "date" />     < input type = "email" value = "enter your mail" />     < input type = "range" />     < input type = "file" />     < input type = "checkbox" />     < input type = "checkbox" />     < input name = "btn" type = "radio" />     < input name = "btn" type = "radio" />     < form >         < input type = "submit" /...

HTML - 12: DIVS AND SPANS

 IN THIS TUTORIAL,  WE WILL LEARN ABOUT DIVS AND SPANS: <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > SHAYAN'S WEBSITE </ title > </ head > < body >     <!-- <a href="#">link1asdf</a>     <a href="#">link2</a> <hr>     <p>Paragraph1</p>     <p>Paragraph2</p>     -->     < span > span1 </ span >     < span > span2 </ span > < hr />     < div > div1 </ div >     < div > div2 </ div >     </ body > </ html >

HTML - 11: TABLES

 IN THIS TUTORIAL, WE WILL LEARN ABOUT TABLES: <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > SHAYAN'S WEBSITE </ title > </ head > < body >     < table >         < thead >             < caption >< h1 > List of Numbers </ h1 ></ caption >           < tr >             < th colspan = "2" > NUM1 </ th >             < th > NUM2 </ th >             < th > NUM3 </ th >           </ tr >         ...

HTML - 10: LISTS

 IN THIS TUTORIAL, WE WILL LEARN ABOUT LISTS: <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > SHAYAN'S WEBSITE </ title > </ head > < body >     <!-- <ul> -->         <!-- <ol type="i">         <li><a href="#">Apples</a></li>         <li>Oranges             <ol>                 <li>item1</li>             </ol>         </li>         <li>Bananas</li>         </ol> --...