parent
aa116d5835
commit
7fca9806a3
@ -0,0 +1,33 @@ |
||||
<!DOCTYPE html> |
||||
<html> |
||||
<head> |
||||
<meta charset="utf-8"/> |
||||
<meta name="viewport" content="width=device-width"/> |
||||
<style> |
||||
.header { |
||||
color: red; |
||||
} |
||||
|
||||
div.header { |
||||
color: blue; |
||||
} |
||||
|
||||
h1, |
||||
h2 { |
||||
color: green; |
||||
} |
||||
</style> |
||||
</head> |
||||
<body> |
||||
<p class="header">text-1</p> |
||||
<div>text-2</div> |
||||
<div class="header">text-3</div> |
||||
<div> |
||||
<h1>text-4</h1> |
||||
</div> |
||||
<div class="header"> |
||||
<h1>text-5</h1> |
||||
</div> |
||||
<h2>text-6</h2> |
||||
</body> |
||||
</html> |
Loading…
Reference in new issue