How to Find Embeded CSS
CSS is a style sheet language used to format and display documents written using markup languages HTML, XHTML and XML. CSS comes in three different styles: inline, external and embedded. Knowing and understanding how to use the three CSS styles will help when designing your web pages. Inline CSS only affects the tag it is applied to. External CSS is written in a separate CSS style sheet, and is referenced into the web page using the html <link> tag. Finally, embedded CSS is written inside the web page and is often inserted between the <head> tags in your HTML source code, and is defined by the opening <style> and closing </style> tags.
Instructions
-
-
1
Open your web page using programs similar to Adobe Dreamweaver, Microsoft Expression Web or Notepad. the first two programs are web design software, and the third is a text editor.
-
2
Look at the top of your HTML page code. Look for the opening "<style>" and the closing "</style>" tags.
-
-
3
Look for code similar to the following:
<style="text/css">
p {color: white; }
body {background-color: black; }
</style>
Here is an example of similar embedded CSS syntax:
<html>
<head>
<style="text/css">
p.first { background-color: gray; }
p.second { background-color: red; }
p.third {
background: purple;
color: white;
}
</style>
</head>
-
1