scrimba
HTML & CSS
Build a Google.com clone
Why we can't have two block-level buttons
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

Why we can't have two block-level buttons
AboutCommentsNotes
Why we can't have two block-level buttons
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="main">
<img class="logo-img" src="google.png" />
<input class="search-input" type="text" />
<button class="btn">Google Search</button>
<!--
Challenge:
Add the next button.

Why aren't our buttons behaving as we want them to?
-->
</div>
</body>
</html>
Console
/index.html
-4:25