
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Type Selectors in CSS
A selector is an HTML tag at which a style will be applied. This could be any tag like <h1> or <table> etc.
With the type selector, set for HTML tags like h1, h2, h3, p, etc:
h2 { color: #FF0000; }
Set for p:
p { color: #800000; }
Advertisements