46 lines
877 B
HTML
46 lines
877 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title></title>
|
|
<link href="style.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<h1>Html-css</h1>
|
|
<h3>CSS - Selectors</h3>
|
|
|
|
<pre><code>.class {
|
|
}
|
|
</code></pre>
|
|
|
|
<h3>CSS - Font styling</h3>
|
|
|
|
<pre><code>font-family: Arial;
|
|
font-size: 12pt;
|
|
line-height: 150%;
|
|
color: #aa3322;
|
|
</code></pre>
|
|
|
|
<h3>CSS - Font styling</h3>
|
|
|
|
<pre><code>// Bold
|
|
font-weight: bold;
|
|
font-weight: normal;
|
|
|
|
// Italic
|
|
font-style: italic;
|
|
font-style: normal;
|
|
|
|
// Underline
|
|
text-decoration: underline;
|
|
text-decoration: none;
|
|
</code></pre>
|
|
|
|
|
|
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/1.6.4/jquery.min.js'></script>
|
|
<script src="http://cachedcommons.org/cache/prettify/1.0.0/javascripts/prettify-min.js"></script>
|
|
<script>$("pre").addClass("prettyprint");</script>
|
|
<script>prettyPrint();</script>
|
|
</body>
|
|
</html>
|