HTML introduction

Web scripting is both an art and a technical skill. Embrace the creative
aspects of design while harnessing the logical thinking required for
coding. Your dedication and enthusiasm will propel you towards becoming a proficient web scripter.

       Uncover the Essentials: Dive into the core concepts of web scripting,
      including HTML, CSS, and JavaScript. Learn how these languages work
      together to create dynamic and visually appealing web pages.
      
       Master HTML: Discover the language that forms the structure of every web page.
      Explore tags, attributes, and elements, and learn how to create
      well-organized and semantically meaningful content.
      
       Polish with CSS: Dive into the world of styling with Cascading Style Sheets (CSS). Learn
      how to design and layout your web pages, making them visually stunning and
      responsive across different devices.
      
       Enhance with JavaScript: Unlock the power of interactivity and functionality with JavaScript. From simple
      animations to complex web applications, learn how to bring your web pages
      to life. 
      
       Hands-on Projects: Apply your skills to practical projects
      that simulate real-world scenarios. Build a portfolio of web scripts that
      showcase your newfound abilities. 
      
       Web Scripting Trends: Stay up-to-date with the latest trends and technologies in web scripting. Explore the
      exciting world of frameworks, libraries, and tools that make web
      development faster and more efficient.
      
       Collaboration and Exploration: Connect with fellow learners, share ideas, and collaborate on projects.
      The world of web scripting is vast, and collective learning can lead to
      inspiring breakthroughs.
    

List of Text editors (I'll only include the ones i'm familiar with):

Introduction to the Web

      The World Wide Web, often simply known as the web, represents a
      sophisticated network infrastructure comprising a vast array of
      interconnected documents, multimedia resources, and interactive platforms
      accessible through the internet. This expansive digital ecosystem is
      underpinned by a diverse range of technological frameworks and protocols,
      facilitating seamless communication, information dissemination, and
      collaboration on a global scale.
    

Web Applications

      Web applications are software programs that run in web browsers. They
      provide users with interactive experiences, allowing them to perform
      tasks, access services, and retrieve information through a web interface.
      Web applications range from simple forms to complex platforms like social
      media and online marketplaces.
    

Browsers and User Interaction

      Browsers are software applications that enable users to access and view web 
      content. They render HTML, CSS, and JavaScript to display webpages. Browsers 
      provide a user interface for navigating the web, interacting with websites, 
      and executing web applications.

      Common web browsers include Google Chrome, Mozilla Firefox, Apple Safari, 
      Microsoft Edge, and Opera. Browsers offer features like bookmarks, history, 
      tabs, and extensions to enhance the browsing experience.
    

Basic HTML Tags

  1. The <!DOCTYPE HTML> declaration defines that this document is an HTML5 document
  2. The <html> element is the root element of an HTML page
  3. The <head> element contains meta information about the HTML page
  4. The <title> element specifies a title for the HTML page
  5. The <body> element defines the document's body, and is a container for all the visible contents
  6. The <h1> element defines a large heading, Can go from h1 to h6
  7. The <p> element defines a paragraph

  8. The <br> tag defines a line break, and is an empty element without a closing tag
  9. The <a> tag defines a hyperlink. The href attribute specifies the URL of the page the link goes to
  10. The <img> tag is an empty element without a closing tag that is used to embed an image in an HTML page.
    The src attribute specifies the path to the image to be displayed
  11. The href attribute of <a> specifies the URL of the page the link goes to
  12. The src attribute of <img> specifies the path to the image to be displayed
  13. The width and height attributes of <img> provide size information for images
  14. The alt attribute of <img> provides an alternate text for an image
  15. The style attribute is used to add styles to an element, such as color, font, size, and more
  16. The lang attribute of the <html> tag declares the language of the Web page
  17. The title attribute defines some extra information about an element

Credits

  salamat po maam
  W3Schools