Posts

Showing posts from January, 2022

HTML NOTES

-> Please use live server or live preview in vs code to see the file and examples properly -> For learning new html tags and commands must visit - https://developer.mozilla.org/en-US/docs/Web/HTML/Element -> Try to use CSS rather than using different tags ###################### HTML CHAPTER 1 - INTRODUCTION ###################### HTML - hyper text makeup language. html is the language of web use to create a website. we can use html tags to define looks and fell of website. with understanding of tags and how to put together, we can create a beautiful website easily. ## THEN WHY CSS AND JAVASCRIPTS html is use for defining the layout of a page - a parabone page structure. CSS is used to add desining of a page created using html.  JavaScripts is used to program logic for the page layout eg what happend when a hovers on a txt, when to hide or show elements etc. # A EXAMPLE HTML = car body(only metal) CSS = car paint, decoration etc. JAVASCRIPTS = car engine + interior logic w...

PYTHON NOTES

 (python notes) - IMPORTANT ##BASICS print - for print after print use this ("") to print some thing if you want to print multi line then use (''' - like this                                          you can do - ''') # - this is for comment ''' - multi line comment - ''' ##DATA TYPE THERE ARE ONLY 5 TYPES OF DATA TYPE a = "faraz" this is know as string (basically a set of character) there no need of "zxy" u can use 'zxy' b = 786 this is know as integer (basically a set of number) c = 78.6 this is know as floating point number (basically a set of numbers with decimal(point)) d = true or false it is know as boolians (basically any valuse is true or false it tells us)        e = none it is know as none (basically if there is nothing so it is none)     if you want to use it so you can print it by the command print(a) or print(b) or print(c) or pri...