-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path12.html
34 lines (33 loc) · 1.15 KB
/
12.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Create your own bootstrap</title>
<link rel="stylesheet" href="css/components.min.css">
<link rel="stylesheet" href="css/preso.css">
</head>
<body>
<header class="k-header">
<div class="k-wrapper">
<h1><a class="k-headline" href="1.html">Bad practices</a></h1>
</div>
</header>
<div class="k-content">
<div class="k-middle k-center full-height">
<div class="k-body">
<header>
<h2 class="k-display">Lack of encapsulation</h2>
</header>
<div two-columns class="k-left">
<ul class="k-list disc">
<li>Styles should not <i class="color-significant">bleed</i> out of their components!</li>
<li>Avoid to have rules that affect <strong class="color-significant">body</strong>, <strong class="color-significant">a</strong>, ... as a whole.</li>
<li>Rely on <i class="color-significant">classnames</i> instead of nesting.</li>
</ul>
</div>
</div>
</div>
</div>
<script src="js/scripts.js"></script>
</body>
</html>