scrimba
The Weekly Web Dev Challenge
The Weekly Web Dev Challenge - Fix the Accessibility Issues ๐Ÿ› 
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

The Weekly Web Dev Challenge - Fix the Accessibility Issues ๐Ÿ› 
AboutCommentsNotes
The Weekly Web Dev Challenge - Fix the Accessibility Issues ๐Ÿ› 
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Festive&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Outlined"
rel="stylesheet">
<link rel="stylesheet" href="index.css">
<title>Google Material Icons</title>
</head>
<body>
<div class="container">
<img src="palm-trees.jpg"/>
<!-- Photo by <a href="https://unsplash.com/@mvdheuvel?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Maarten van den Heuvel</a> on <a href="https://unsplash.com/s/photos/palm-tree?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a> -->
<form>
<input id="name" type="text" placeholder="face"/>
<input id="location" type="text" placeholder="room"/>
<input id="email" type="email" placeholder="email"/>

<button type="submit">Submit</button>
</form>
</div>
</body>
</html>
Console
/index.html
-1:26