Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> CSS

CSS के साथ स्किल बार कैसे बनाएं?

<घंटा/>

CSS के साथ स्किल बार बनाने के लिए, कोड इस प्रकार है -

उदाहरण

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
   * {
      box-sizing: border-box;
   }
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   }
   h1 {
      text-align: center;
   }
   .container {
      width: 100%;
      background-color: rgb(231, 231, 231);
      border-radius: 20px;
   }
   .cpp, .java, .python, .c {
      text-align: center;
      font-weight: bolder;
      padding-top: 3px;
      padding-bottom: 3px;
      color: white;
      border-radius: 20px;
   }
   .cpp {
      width: 90%;
      background-color: #4caf50;
   }
   .java {
      width: 80%;
      background-color: #2196f3;
   }
   .python {
      width: 65%;
      background-color: #f44336;
   }
   .c {
      width: 60%;
      background-color: #808080;
   }
</style>
</head>
<body>
<h1>Programming Proficiency</h1>
<h3>Python</h3>
<div class="container">
<div class="python">75%</div>
</div>
<h3>Java</h3>
<div class="container">
<div class="java">70%</div>
</div>
<h3>C++</h3>
<div class="container">
<div class="cpp">60%</div>
</div>
<h3>C</h3>
<div class="container">
<div class="c">40%</div>
</div>
</body>
</html>

आउटपुट

उपरोक्त कोड निम्न आउटपुट उत्पन्न करेगा -

CSS के साथ स्किल बार कैसे बनाएं?


  1. CSS के साथ कूपन कैसे बनाएं?

    CSS के साथ एक कूपन बनाने के लिए, कोड इस प्रकार है - उदाहरण <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style>    body {       font-family: "Segoe UI", Tahoma

  1. सीएसएस के साथ तीर कैसे बनाएं?

    सीएसएस के साथ तीर बनाने के लिए, कोड इस प्रकार है - उदाहरण <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style>    body {       font-family: "Segoe UI", Tahoma,

  1. CSS के साथ ऑन स्क्रॉल फिक्स्ड नेविगेशन बार कैसे बनाएं?

    CSS स्थिति विशेषता निर्दिष्ट करके, हम CSS का उपयोग करके एक निश्चित नेविगेशन बार बना सकते हैं। CSS में पोजिशन प्रॉपर्टी का सिंटैक्स इस प्रकार है - Selector {    position: /*value*/; } निम्नलिखित सीएसएस स्थिति संपत्ति का एक उदाहरण है। उदाहरण <!DOCTYPE html> <html> <head>