Commit 6c336aa3 by Patryk Czarnik

style CSS wpisane bezp. w HTML

parent 262bce8d
...@@ -3,14 +3,23 @@ ...@@ -3,14 +3,23 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Tytuł strony</title> <title>Tytuł strony</title>
<style type="text/css">
body {
background-color: yellow;
}
li {
list-style: square;
}
</style>
</head> </head>
<body> <body>
<h1>Przykładowa strona</h1> <h1 style="color:blue;font-style:italic">Przykładowa strona</h1>
<p>Ala ma kota a Ola ma psa.</p> <p>Ala ma kota a Ola ma psa.</p>
<ul> <ul>
<li>Warszawa</li> <li style="color:red">Warszawa</li>
<li>Kraków</li> <li style="color:green">Kraków</li>
<li>Gdańsk</li> <li>Gdańsk</li>
</ul> </ul>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment