@pankajparkar
Tim Berners-Lee
Documents & other resource sharing
Tim Berners-Lee invented www in 1989
Source: http://write.flossmanuals.net/summary-of-firefox/how-the-web-works/
Senior Software Engineer, Deskera
( @ngx-lib/multiselect )
It is process of developing
Web application or website
On Intranet or Internet
or on private or public
Below are the Ideologies
Server
Client
Hyper Text Markup Language
Element/tag
Element close
Attribute
Element text
Cascading Style Sheets
Applying CSS to element
Classname
Input with type="text" attriubute
<div id="container">
Content
</div>
#container {
background: blue;
width: 100px;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}
const container =
document.getElementById('container');
// on click of container bg color changes
container.addEventListener('click', ()) => {
container.style.background = 'red';
);