SRSANJANA REDDYinsanjanareddy.hashnode.dev·Oct 2, 2023 · 5 min read01_Unleashing the Power of JavaScriptAbout JavaScript JavaScript is often abbreviated as JS. It was created by Brendan Eich in 1995. JavaScript is a core technology of the World Wide Web, along with HTML and CSS. It is a versatile language that can be used for both front-end and bac...00
SRSANJANA REDDYinsanjanareddy.hashnode.dev·Feb 21, 2023 · 1 min readForms in HTML<!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>Sample form</title> </head> <body> ...00
SRSANJANA REDDYinsanjanareddy.hashnode.dev·Feb 21, 2023 · 1 min readTime Table project in HTML<!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>Time Table</title> </head> <body> <...00
SRSANJANA REDDYinsanjanareddy.hashnode.dev·Feb 19, 2023 · 11 min readHTML elements1. Headings HTML headings are defined using the h1-h6 elements. They are used to structure the content of a webpage, and they also help search engines understand the hierarchy of the content on the page. <h1>This is a heading</h1> <h2>This is...00
SRSANJANA REDDYinsanjanareddy.hashnode.dev·Feb 19, 2023 · 3 min readWalkthrough of HTML & HTML5HTML HTML (HyperText Markup Language) is a standard markup language for creating web pages and web applications. It is the foundation of the World Wide Web and is used to describe the structure of the content in documents, such as headings, paragraph...00