Skip to content

Instantly share code, notes, and snippets.

@techxdeveloper
Last active October 1, 2017 11:26
Show Gist options
  • Save techxdeveloper/be9641ab5992060d6f5dae5fb7d0162a to your computer and use it in GitHub Desktop.
Save techxdeveloper/be9641ab5992060d6f5dae5fb7d0162a to your computer and use it in GitHub Desktop.
CSS Class Selector
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Class Selector</title>
<style>
.container {
padding: 20px;
margin: 20px;
background-color: #00bdc4;
color: #fafafa;
border-radius: 2px;
}
</style>
</head>
<body>
<div class="container">
<h1>CSS Class Selector</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dignissimos quos quaerat sunt eius numquam repellendus itaque labore voluptatum impedit, ipsum cumque eum iure necessitatibus distinctio est incidunt? Nam possimus, mollitia.</p>
<ul>
<li>Something</li>
<li>Something</li>
<li>Something</li>
<li>Something</li>
</ul>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment