TThanushinthanush.hashnode.dev·May 18, 2023 · 4 min readGrid in CSSA grid can be defined as an intersecting set of vertical and horizontal lines. CSS Grid layout separates a page into major sections. Grid property offers a grid-based layout system having rows and columns. It makes the designing of web pages easy wit...00
TThanushinthanush.hashnode.dev·May 18, 2023 · 2 min readHTML ElementsAn HTML file is made of elements. These elements are responsible for creating web pages and define content in that webpage. An element in HTML usually consist of a start tag <tag name>, close tag </tag name> and content inserted between them. Technic...00
TThanushinthanush.hashnode.dev·May 16, 2023 · 5 min readHTML Input TypesIn HTML <input type=" "> is an important element of HTML form. The "type" attribute of input element can be various types, which defines information field. Such as <input type="text" name="name"> gives a text box. text <input> element of type "text" ...00
TThanushinthanush.hashnode.dev·May 16, 2023 · 1 min readCSS Media QueriesCSS Media Queries allow you to create responsive websites across all screen sizes, ranging from desktop to mobile. So you can see why it's important to learn this topic. SYNTAX @media screen and (max-width: 768px){ .container{ //Your code's here...00
TThanushinthanush.hashnode.dev·May 16, 2023 · 2 min readFlex BoxThe Flexbox model allows us to layout the content of our website. Not only that, it helps us create the structures needed for creating responsive websites for multiple devices. flex-direction property This property allows us to set the direction and ...00