Chris Sevilleja
Making scotch.io. Google Dev Expert. Champion pizza maker.
Chris Sevilleja
scotch.io
@chrisoncode
Every website uses these!
Structure
Style
Functionality
Anything and everything!
<html>
</html>
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>
<div>
content goes inside div
</div>
<h1>This is a title</h1>
<h2>This is a smaller title</h2>
<a href="http://google.com">My Sweet Link</a>
<img src="http://awesome.com/dinosaur.jpg">
h1 {
color: #C0FF33;
background: #C00C00;
}
Content
Padding
Margin
<div id="card">
my content goes here
</div>
#card {
background: #EEE;
border: 1px solid #BBB;
padding: 20px;
}
<div class="card">
my content goes here
</div>
.card {
background: #EEE;
border: 1px solid #BBB;
padding: 20px;
}
By Chris Sevilleja