You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/css/Direct adjacent sibling com...

24 lines
637 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head><title>Direct Adjacent Sibling Combinator</title>
<style type="text/css">
h1 ~ h2 {
text-decoration: underline;
font-size: 24px;
color: pink;
}
</style>
</head>
<body>
<div>
<h1>Code Examples</h1>
<p>
Happy Codings is sample source code search engine.
</p>
<h2>Code Examples</h2>
</div>
</body>
</html>