#001 - css placements

Yahoo Baba

Yahoo Baba

Yahoo Baba

Yahoo Baba

Exported from Notepad++
<html> <head> <title>css Color</title> <!-- external css --> <link rel="stylesheet" type="text/css" href="style.css"> <link rel="stylesheet" type="text/css" href="../globalcss/style.css"> <!-- file present in folder which is outside the main folder --> <link href="https://fonts.googleapis.com/css?family=Open+Sans|Oswald" rel="stylesheet"> <!-- for google fonts --> <!-- <link rel="stylesheet" type="text/css" href="./globalcss/style.css"> file present inside the main folder --> <!-- internal css --> <style> h2 { color:green; font-size:10px; } .divbox{ color:maroon; background:#FFEFD5; border:6px solid yellow; outline:1px solid maroon; margin-bottom:8px; padding:2px; } .divbox h7{ color:white; font-size:20px; background:#000000; } </style> </head> <body> <div class = "divbox"><h7>#001 - css placements</h7> <!-- #001 - inline css --> <h1 style="color:red;font-size:15px;">Yahoo Baba</h1> <h2>Yahoo Baba</h2> <h3>Yahoo Baba</h3> <h4>Yahoo Baba</h4> </div> </body> </html>