HTML & CSS - Division

by Code_Garage

HTML

<nav></nav>
<h1>Mon site web</h1>
<div>
	<h2>Première partie</h2>
	<p>Lorem ipsum...</p>
</div>
<div>
	<h2>Deuxième partie</h2>
	<p>Lorem ipsum...</p>
</div>

CSS

* {
  margin: 0;
}
h1 {
  margin-left: 10px;
}
div {
  background-color: #ffe6d0;
  padding: 10px;
  max-width: 300px;
  margin: 10px;
  box-sizing: border-box;
}