Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions LCI2025042/ass.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- <link rel="stylesheet" href="styles.css"> -->
<script src="ass.js" ></script>


</head>
<body id="12"style="background-color: aquamarine;">
<h1 class="hello" id="heading1" style =" text-align : center ; " >My First Website With Javascript </h1>
<h2 class="hello" id="heading2" style =" text-align : center ; ">WEB DEVELOPMENT INTRODUCTION</h2>
<p class="para">Web development encompasses the creation, building, and maintenance of websites and web applications accessible over the internet. It involves a range of tasks, from designing the visual layout and user experience (front-end development) to building the server-side logic and database interactions (back-end development).
Front-end development focuses on the "client-si</p>
<div>
<h2 class="hello" id="heading3" style =" text-align : center ; ">WEB 3 INTRODUCTION</h2>
<P class="para">Web3 is the next generation of the internet, a vision for a decentralized, user-centric web built on principles of openness and blockchain technology. Instead of data being controlled by large companies, Web3 aims to give users more ownership of their data and digital assets, enabled by decentralized networks and artificial intelligence that create more personalized and secure experiences. This shift represents a move from a "renting" model of the internet to one where users have greater control and ownership</P>
<P class="para">something</P>
</div>
<button onclick=changecolour() >Click </button>

</body>
</html>
4 changes: 4 additions & 0 deletions LCI2025042/ass.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
function changecolour(){
let element = document.getElementById("12");
element.style.backgroundColor = "skyblue";
}