scrimba
Bootcamp (HTML/CSS/JS) 2024
bootcamp #07
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 #07
AboutCommentsNotes
bootcamp #07
Expand for more info
index.html
run
preview
console
<!doctype html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="index.css">
</head>
<body>

<form>
<label for="country_code">Country code:</label>
<input
type="date"
required
class=""
id=""
width=""
height=""
size=""
id="country_code"
name="country_code"
pattern="[A-Za-z]{3}"
title="Three letter country code">

<label for="email">email</label>

<input type="email" required id="email" name="email"
title="hello@gmail.com" >

<input type="submit" value="submit">
</form>


</body>
</html>
Console
/index.html?country_code=dcxsc&email=scdxscdx
LIVE