(Solved) : Html Eight 8 Checkboxes Programming Language Experience C C Java Javascript Php Python Vis Q44020527 . . .
- HTML
- Eight (8) checkboxes
- Programming Language Experience
- C
- C#
- Java
- JavaScript
- PHP
- Python
- Visual Basic
- Other
- For each language, except Other, include ahyperlink to the appropriate article onWikipedia.org
- Note 1: Organize into two (2) columns of four(4) languages each.
- Vertically align the checkboxes
- Note 2: Do not pre-select any of the options.
- Programming Language Experience
Use customcheckboxes for the Programming LanguageExperience,
- Set the background of the selected checkbox toblue
- Set the background of the unselectedcheckboxes to grey
—————————–
This is what I got sofar
<metaname=”viewport” content=”width=device-width,initial-scale=1″>
<style>
* {
box-sizing: border-box;
}
.column {
float: left;
width: 50%;
padding: 10px;
}
}
</style>
</head>
<body>
<labelfor=”start”>Programming Language Experience:</label>
<divclass=”row”>
<div class=”column” >
<ul class=”checkbox-grid”>
<li><input type=”checkbox” name=”program”value=”C”><ahref=”https://en.wikipedia.org/wiki/C_(programming_language)”>C</a></li>
<li><inputtype=”checkbox” name=”program” value=”C#”><ahref=”https://en.wikipedia.org/wiki/C_Sharp_(programming_language)”>C#</a><li/>
<li><inputtype=”checkbox” name=”program” value=”Java”><ahref=”https://en.wikipedia.org/wiki/Java_(programming_language)”>Java</a></li>
<li><inputtype=”checkbox” name=”program” value=”JavaSript”><ahref=”https://en.wikipedia.org/wiki/JavaScript”>JavaScript</a></li>
</div>
<div class=”column”>
<br>
<li><input type=”checkbox” name=”program”value=”PHP”><ahref=”https://en.wikipedia.org/wiki/PHP”>PHP</a></li>
<li><inputtype=”checkbox” name=”program” value=”Python”><ahref=”https://en.wikipedia.org/wiki/Python_(programming_language)”>Python</a></li>
<li><input type=”checkbox” name=”program” value=”VisualBasic”><ahref=”https://en.wikipedia.org/wiki/Visual_Basic”>VisualBasic</a></li>
<li><inputtype=”checkbox” name=”program”value=”Other”>Other</li>
</ul>
</div>
</div>
</body>
</html>
Expert Answer
Answer to HTML Eight (8) checkboxes Programming Language Experience C C# Java JavaScript PHP Python Visual Basic Other For each l…
OR