├── HTML CSS ├── External_css.html ├── Internal_css.html ├── Introduction.html ├── section_main_Header_footer.html ├── style.css └── style_inline.html └── README.md /HTML CSS/External_css.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | External CSS 9 | 10 | 11 | 12 |
13 |
GeeksForGeeks
14 |
15 | A computer science portal for geeks 16 |
17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /HTML CSS/Internal_css.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Internal CSS 8 | 22 | 23 | 24 |
25 |
WebGIS
26 | 27 |
28 | This course is offered to Student of Remote Sensing & Geo-Informatics at Institute of Space Technology 29 |
30 |
31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /HTML CSS/Introduction.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Introduction 8 | 9 | 10 |

Heading

11 |

Heading

12 |

Heading

13 |

Heading

14 |
Heading
15 |
Heading
16 |

17 | Web GIS provides many more opportunities to provide broader access to your authoritative GIS data, enabling you to move your system of record to a system of engagement that facilitates everything from self-service mapping to making better decisions. It makes GIS more accessible, more affordable, and more pervasive. It amplifies the value of GIS, and the role of GIS professionals. 18 | 19 | Web GIS is much more than a new trend, it’s the new paradigm for implementing a modern GIS. It’s fundamentally changing how we think about GIS, and the role of GIS professionals. 20 | 21 | The shift from client/server architectures to Web services enables us to connect to a world of information, from our enterprise to the Internet of Things (IoT), Big Data, and more. It pushes GIS forward into real-time mode instead of static data. Web GIS enables us to be more agile, moving from custom application development to configurable templates and web app builders. And most importantly, Web GIS moves us from proprietary data into open data and shared services that can empower everyone. 22 | 23 | If you’ve not done so already, it’s time to rethink your GIS, and consider the new opportunities and workflows that Web GIS provides. 24 |

25 | First Lab class of WEBGIS
26 | First Lab class of WEBGIS 27 | First Lab class of WEBGIS
28 |

First Lab class of WEBGIS


29 | First Lab class of WEBGIS
30 | First Lab class of WEBGIS
31 | First Lab class of WEBGIS
32 | (a+b) 2 = a 2+2ab+b 2
33 | H 2 O 34 | 35 | 36 | -------------------------------------------------------------------------------- /HTML CSS/section_main_Header_footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Learning HTML 5 | 6 | 7 |
8 | H 9 | T 10 | M 11 | L 12 |
13 |
14 |
15 |

The Building Blocks of the web

16 |

17 | There is not website without HTML. Learn HTML and build websites and web applications 18 |

19 |
20 |
21 | 24 | 25 | -------------------------------------------------------------------------------- /HTML CSS/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color:powderblue; 3 | } 4 | .main { 5 | text-align:center; 6 | } 7 | .GFG { 8 | color:#009900; 9 | font-size:50px; 10 | font-weight:bold; 11 | } 12 | #geeks { 13 | font-style:bold; 14 | font-size:20px; 15 | color:#009900; 16 | } 17 | -------------------------------------------------------------------------------- /HTML CSS/style_inline.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Inline CSS 8 | 9 | 10 |

12 | WebGIS Course 13 |

14 | 15 | 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # HTML-CSS 2 | Welcome to my GitHub repository for HTML and CSS! Here, you will find a collection of projects and code snippets that I have created and compiled to showcase my skills in front-end web development. 3 | 4 | HTML and CSS are the backbone of the web and form the foundation of every website. By using these two languages effectively, we can create stunning websites with beautiful designs and intuitive user interfaces. In this repository, I have explored various HTML and CSS techniques, including responsive design, animations, and interactive web elements, to create engaging and user-friendly websites. 5 | 6 | Whether you are a beginner looking to learn HTML and CSS, or an experienced developer looking to expand your skills, this repository has something for everyone. So, feel free to browse through the projects and code snippets and don't hesitate to reach out with any questions or feedback. 7 | --------------------------------------------------------------------------------