Tell us what’s happening:
hi. doing styling a list lab. not working for me and need help.the
Your code so far
html
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<title>Style To-Do List</title>
</head>
<body>
<h1>My To-Do List</h1>
<ul class="todo-list">
<li>Explore gaming</li>
<label for="gaming">Explore gaming keyboards</label>
<input type="checkbox" id="gaming" name="ganing" value="gaming">
<ul class="sub-item">
<li><a href="https://www.freecodecamp.org/learn/full-stack-developer/lab-stylized-to-do-list/build-a-stylized-to-do-list" target="_blank">Store</a></li>
</ul>
</ul>
<ul class="todo-list">
<label for="request">Finish the report</label>
<input type="checkbox" id="request" name="request" value="request">
<ul class="sub-item">
<li><a href="bfreecodecamp.org/learn/full-stack-developer/lab-stylized-to-do-list/build-a-stylized-to-do-list" target="_blank">Request Access</a></li>
</ul>
</ul>
<ul class="todo-list">
<label for="phone">View Phone's Warranty</label>
<input type="checkbox" id="phone" name="phone" value="phone">
<ul class="sub-item">
<li><a href="bfreecodecamp.org/learn/full-stack-developer/lab-stylized-to-do-list/build-a-stylized-to-do-list" target="_blank">View Receipts</a></li>
</ul>
</ul>
<ul class="todo-list">
<label for="process">Check Processor Specs</label>
<input type="checkbox" id="process" name="process" value="process">
<ul class="sub-item">
<li><a href="https://www.freecodecamp.org/learn/full-stack-developer/lab-stylized-to-do-list/build-a-stylized-to-do-list" target="_blank">View Model Number</a></li>
</ul>
</ul>
</body>body>
</html>html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Styled To-Do List</title>
</head>
<body>
</body>
</html>
css
/* file: styles.css */
ul {
list-style-type: square;
}
a {
color: blue;
text-decoration: none;
}
a:visited {
color: purple;
}
a:hover {
color: grene;
}
a:focus {
outline: solid;
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36
Challenge Information:
Build a Stylized To-Do List - Build a Stylized To-Do list
hi. doing the lab style a list. okay first time doing this. so using jaws for windows. so can some one help me out. so will paste my html code and css below. so also the error list when vallidating. and also as totally blind, need help with the links and the colors and the outline and solid. can any one help. and tell me what i am doing wrong and how to get it to work.
marvin.
ps: pasting my code, css and error messages below.
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<title>Style To-Do List</title>
</head>
<body>
<h1>My To-Do List</h1>
<ul class="todo-list">
<li>Explore gaming</li>
<label for="gaming">Explore gaming keyboards</label>
<input type="checkbox" id="gaming" name="ganing" value="gaming">
<ul class="sub-item">
<li><a href="https://www.freecodecamp.org/learn/full-stack-developer/lab-stylized-to-do-list/build-a-stylized-to-do-list" target="_blank">Store</a></li>
</ul>
</ul>
<ul class="todo-list">
<label for="request">Finish the report</label>
<input type="checkbox" id="request" name="request" value="request">
<ul class="sub-item">
<li><a href="bfreecodecamp.org/learn/full-stack-developer/lab-stylized-to-do-list/build-a-stylized-to-do-list" target="_blank">Request Access</a></li>
</ul>
</ul>
<ul class="todo-list">
<label for="phone">View Phone's Warranty</label>
<input type="checkbox" id="phone" name="phone" value="phone">
<ul class="sub-item">
<li><a href="bfreecodecamp.org/learn/full-stack-developer/lab-stylized-to-do-list/build-a-stylized-to-do-list" target="_blank">View Receipts</a></li>
</ul>
</ul>
<ul class="todo-list">
<label for="process">Check Processor Specs</label>
<input type="checkbox" id="process" name="process" value="process">
<ul class="sub-item">
<li><a href="https://www.freecodecamp.org/learn/full-stack-developer/lab-stylized-to-do-list/build-a-stylized-to-do-list" target="_blank">View Model Number</a></li>
</ul>
</ul>
</body>body>
</html>html>
ul {
list-style-type: square;
}
a {
color: blue;
text-decoration: none;
}
a:visited {
color: purple;
}
a:hover {
color: grene;
}
a:focus {
outline: solid;
}