css – POFTUT

What Is HTML5?

What Is HTML5?

HTML5 is the latest version of the de facto web programming markup language HTML. HTML and HTML5 standards are created and published by “World Wide Web Consortium” or W3C. HTML5 is created by the Web Hypertext Application Technology Working Group or WHATWG group in the W3C. The WHATWG group consists of companies like Apple, Google, … Read more

What Is index.html? How To Create and Use index.html?

What Is index.html? How To Create and Use index.html?

Websites provide a lot of web pages with different URLs but there are some defacto pages that exist most of the web sites. index.html is one of them. index.html is used as the main or entrance page for the whole web site or web application. What Is index.html? As its name suggests index.html consists of … Read more

How To Center Table In HTML?

How To Center Table In HTML?

HTML table provides the ability to show text, data, and other elements. While using tables we may want to center the table or table contents to the center. Centering the table and its contents will be centered and look pretty. Center Table with margin-left and margin-right  Attribute The first way to make an HTML table … Read more

CSS Rounded Corners for HTML Elements

CSS Rounded Corners for HTML Elements

The CSS provides border-radius attribute in order to define, shape, round the corners of the HTML elements. This attribute is created in 2005 and gained widespread usage amongst web developers which provides easy styling for different elements. border-radius Attribute border-radius attribute is a very flexible attribute where it accepts different count of parameters. border-radius attribute … Read more

CSS :nth-child Element Selector

CSS :nth-child Element Selector

CSS provides the :nth-child() selector which is ver useful select different elements with different rules and apply some CSS to these elements. :nth-child() is provided in the CSS version 3. Syntax CSS :nth-child() has the following syntax :nth-child(NUMBER){  CSS } `:nth-child` is the keyword `NUMBER` is the selected number or rule used to apply CSS. … Read more

How To Validate HTML, JavaScript, CSS On Web Pages with W3C Validator?

How To Validate HTML, JavaScript, CSS On Web Pages with W3C Validator?

Validating web pages and contents like HTML, JavaScript, and CSS are important for web sites and application owners. As they are popular technologies they have a lot of different implementations where they can be a bit different from the standard. W3C provides a validator to check and provide feedback about the given web page. What … Read more

What Is Webpage?

What Is Webpage?

The Internet is the most popular and crowded network in the world. The Internet provides different services, applications. The webpage is the most popular service or application provided by the internet. The webpage provides content on different topics. In a technical way, Webpage consists of different technologies like HTML, JavaScript, XML, Picture, Video, etc. Web … Read more

How To Change Font Color with CSS in HTML?

How To Change Font Color with CSS in HTML?

Cascading Style Sheet or CSS is used to change attributes of the HTML elements. We can change font size, color, shape, size, length, etc with CSS. In this tutorial, we will learn how to change the font color of different elements in HTML with CSS. Font Color Syntax Font color has very simple syntax where … Read more

Hiding Scroll Bar for Internet Explorer, Chrome, Firefox

Here is the situation we want to hide scroll bar. We have huge content. But we want to still scroll. We can accomplish this with different tactics. By using Css We can use Css techniques in order to hide and do not show the scrollbar in a browser. This is supported by all major browsers like … Read more