Reverting to commit id 320c1642b67d0c93e45b190224c666ff84ce4195

This commit is contained in:
Suvansarkar 2023-08-02 18:04:10 +05:30
parent 358e38ca31
commit fcf3e2514f

View File

@ -5,19 +5,10 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Methods for Adding CSS</title> <title>Methods for Adding CSS</title>
<link rel="stylesheet" href="style.css">
<style>
p {
background-color: green;
color: white;
font-size: 18px;
}
</style>
</head> </head>
<body> <body>
<div>Style me via the external method!</div> <div>Style me via the external method!</div>
<p>I would like to be styled with the internal method, please.</p> <p>I would like to be styled with the internal method, please.</p>
<!-- an orange background and a font size of 18px --> <button>Inline Method</button>
<button style="background-color: orange; font-size: 18px;">Inline Method</button>
</body> </body>
</html> </html>