Posts

Showing posts from May, 2023

CSS - Introduction / Types & Syntax / Bg-Text-Color - By. Shivansh Sir

CASCADING STYLE SHEETS CSS | INTRODUCTION CSS की full form Cascading Style sheetsहै। यह एक प्रकार की language है जिसकी help से हम अपनी Website की designing करते हैं। Simple भाषा में कहें तो CSS आपके browser को यह बताता है कि web page में present contents (like text, image, video, paragraph, font, color, size, position, etc.) को कैसे show करना है। CSS को हमेशा HTML के साथ Use किया जाता है , without HTML के CSS का use करने का कोई मतलब नहीं है, because style apply करने के लिए आपके pass content होना चाहिए और वो content HTML provide कराता है। Example without CSS <!DOCTYPE html> <html>   <head>     <meta charset="utf-8">     <title>CSS Example</title>   </head>   <body>     <h3>Hello Learners</h3>     <p>This is paragraph</p>   </body> </html> CSS Example <!DOCTYPE html> <html>   <head>     <meta charset="utf-8"...