Login or Signup
You must be logged in to perform this action.
Track your Progress
Login and use one of the options listed below.
Click the roadmap topics and use Update Progress dropdown to update your progress.
Use the keyboard shortcuts listed below.
0 of 0 Done
There are three types of CSS styles: internal, external, and inline.
Internal CSS requires you to add the <style>
tag to the <head>
section of your HTML document. The CSS rules defined within the <style>
tag will then be applied to the elements within that specific HTML document.
External CSS allows you to link your web pages to an external .css
file, which can be created with any text editor. This type of CSS is a more efficient method, especially for styling a large website. By editing a .css
file, you can change your entire site at once.
Inline CSS is used to style a specific HTML element. For this type of CSS styling, you simply add the style
attribute to each HTML tag, without using selectors. This type of CSS isn't really recommended, as each HTML tag must be styled individually. Managing your website can be difficult if you only use inline CSS.
Join the Community
roadmap.sh is the 6th most starred project on GitHub and is visited by hundreds of thousands of developers every month.
Roadmaps Best Practices Guides Videos FAQs YouTube
roadmap.sh by @kamrify @kamrify
Community created roadmaps, best practices, projects, articles, resources and journeys to help you choose your path and grow in your career.
Login or Signup
You must be logged in to perform this action.