List Css
List Css
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style7.css">
<title>Document</title>
<style>
#ol1 h3{
text-align: center;
color: blueviolet;
font-size: x-large;
#ol1 ol{
background-color: rgb(46, 242, 245);
#ol1 li{
background-color: rgb(61, 242, 49);
color: rgb(226, 28, 233);
font-weight: bold;
}
</style>
</head>
<body style="background-color: brown;">
<div id="ol1">
<h3>SKILLS</h3>
<ol>
<li>Full Stack</li>
<li>Data Analysis</li>
<li>Digital Marketting</li>
</ol>
</div>
</body>
</html>