scrimba
Bootcamp (HTML/CSS/JS) 2024
bootcamp #03
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

bootcamp #03
AboutCommentsNotes
bootcamp #03
Expand for more info
index.html
run
preview
console
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hello</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css" />
<title></title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<h2>Temperature Converter</h2>
<p>Type a value in the Fahrenheit field to convert the value to Celsius:</p>

<p>
<label>Fahrenheit</label>
<input
id="inputFahrenheit"
type="number"
placeholder="Fahrenheit"
oninput="temperatureConverter(this.value)"
onchange="temperatureConverter(this.value)"
/>
</p>
<p>Celcius: <span id="outputCelcius"></span></p>

<script src="index.js"></script>
</body>
</html>
Console
/index.html
LIVE