scrimba
Figma to code
Landing page
CSS: Initial Styles
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

CSS: Initial Styles
AboutCommentsNotes
CSS: Initial Styles
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="left-col">
<div class="content">
<h1>Got Marketing? Advance your Business Insight.</h1>
<p>Fill out the form and receive our award winning newsletter.</p>
</div>
</div>
<div class="right-col">
<div class="form content">
<div class="input-wrapper">
<label for="name">Name</label>
<input type="text" id="name">
</div>
<div class="input-wrapper">
<label for="email">Email</label>
<input type="text" id="email">
</div>
<div class="input-wrapper">
<button>Sign me up</button>
</div>
</div>
</div>
</body>
</html>
Console
/index.html
-8:44