My Skills Bar
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="STYLESHEET" type="text/css" href="web.css">
<title>web design</title>
</head>
<body>
<h1>My Skill</h1>
<p>Html</p>
<div class="container">
<DIV class="skills Html">90</DIV>
</div>
<p>CSS</p>
<div class="container">
<DIV class="skills CSS">80</DIV>
</div>
<p>Javaspricpt</p>
<div class="container">
<DIV class="skills jss">65</DIV>
</div>
<p>PHP</p>
<div class="container">
<DIV class="skills php">60</DIV>
</div>
</body>
</html>
CSS My Skills Bar Style
.container{
width:100%;
background-color: #ddd;
}
.skills{
text-align: right;
padding-top:10px;
padding-bottom: 10px;
color: #fff;
}
.Html{
width:90%;
background-color: green;
}
.CSS{
width:80%;
background-color: blue;
}.jss{
width:65%;
background-color: red;
}.php{
width:60%;
background-color:darkgrey ;
}
No comments:
Post a Comment