scrimba
Awesome CSS effects
Github user card(2)
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

Github user card(2)
AboutCommentsNotes
Github user card(2)
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="app">
<form>
<input placeholder="Who are you looking for?" id="username">
<input type="button" value="Search" id="search">
</form>

<div class="profile">
<div class="header">
<div class="avatar"></div>
<h2 class="name">Octocat</h2>
<h3 class="location">San Francisco</h3>
</div>
<div class="footer">
<ul class="details">
<li>Repositories<span>111</span></li>
<li>Followers<br><span>222</span></li>
<li>Following<br><span>333</span></li>
</ul>
<a href="#" class="to-github">go to github</a>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>
Console
index.html
-11:22