20 lines
325 B
HTML
20 lines
325 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Inline CSS</title>
|
|
<link href="../css/main.css" media="all" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
background-color: #B24926;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<p>Hepp</p>
|
|
<script type="text/javascript" src="../js/body.js"></script>
|
|
</body>
|
|
|
|
</html>
|