scrimba
Code Review: Caroline's Solo Project - Color Scheme
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

Code Review: Caroline's Solo Project - Color Scheme
AboutCommentsNotes
Code Review: Caroline's Solo Project - Color Scheme
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="styles.css">
<script src="index.pack.js"></script>
</head>
<body>
<form>
<input id="color-hex" type="color" value="#DE606F">
<select id="select-mode">
<option value="" disabled selected>Select Options</option>
</select>
<input id="color-count" type="number" value="6">
<button id="get-color-btn">GET COLOR SCHEME</button>
</form>
<div id="intro">
<h1>COLOR SCHEME</h1>
<div id="intro-instructions">
<h6>Need help combining colors? You came to the right place! With color scheme you:</h6>
<ol>
<li>Pick a color</li>
<li>Select what type of combination you need</li>
<li>Tell us how many color combination you want</li>
<li>GET COLOR SCHEME!</li>
</ol>
</div>
</div>
<div id="color-scheme"></div>
</body>
</html>
Console
/index.html?
-8:30