Skip to content

Commit 9349b9b

Browse files
Update README.md
1 parent eeecedb commit 9349b9b

File tree

1 file changed

+36
-8
lines changed

1 file changed

+36
-8
lines changed

WCC-CSS/README.md

Lines changed: 36 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CSS (Cascading Stylesheets)
1+
# CSS (Cascading Style Sheets)
22

33
Besides HTML files most websites use CSS files to maintain the styling.
44
HTML structures the content of a website and CSS styles them.
@@ -9,6 +9,13 @@ This means you are styling HTML elements in general, rather than adapting a spec
99

1010
**Note:** *If you are not familiar with the HTML syntax yet, reading the [WCC-HTML](./../WCC-HTML) could be a nice introduction for you.*
1111

12+
## Basic HTML Layout without Stylings
13+
14+
To be able to style something we will need some content.
15+
I have prepared a basic layout with all kinds of different HTML elements.
16+
Feel free to use it in an [online code editor like CodePen](https://codepen.io/dailysh-it/pen/gOYZXQX) or copy it to your local development environment.
17+
If you are not using an IDE (Integrated Development Environment) yet, have a look on our [list of IDE's](WCC-Glossary#ide-integrated-development-environment).
18+
1219
```html
1320
<!DOCTYPE html>
1421
<html>
@@ -52,6 +59,11 @@ This means you are styling HTML elements in general, rather than adapting a spec
5259
<li>
5360
<a href="#">At Work</a>
5461
<!-- Sub Navigation -->
62+
<ul>
63+
<li>
64+
<a href="#">Paperless Office</a>
65+
</li>
66+
</ul>
5567
</li>
5668
<li>
5769
<a href="#">For Traveling</a>
@@ -60,6 +72,9 @@ This means you are styling HTML elements in general, rather than adapting a spec
6072
<li>
6173
<a href="#">Carsharing</a>
6274
</li>
75+
<li>
76+
<a href="#">Vehicles in Comparison</a>
77+
</li>
6378
</ul>
6479
</li>
6580
<li>
@@ -69,6 +84,15 @@ This means you are styling HTML elements in general, rather than adapting a spec
6984
<li>
7085
<a href="#">Carsharing</a>
7186
</li>
87+
<li>
88+
<a href="#">Railways & Train</a>
89+
</li>
90+
<li>
91+
<a href="#">Cycling</a>
92+
</li>
93+
<li>
94+
<a href="#">E-Mobility</a>
95+
</li>
7296
</ul>
7397
</li>
7498
</ul>
@@ -90,14 +114,18 @@ This means you are styling HTML elements in general, rather than adapting a spec
90114
</nav>
91115

92116
<h1>Eco-friendliness that you can start right now with your electronical devices</h1>
93-
<p></p>
94-
<p></p>
95-
<h2></h2>
96-
<p></p>
97-
<p></p>
98-
117+
<p>
118+
Did you know that your phone charger consumes power all the time when you plug it into the wall?
119+
Normally there is no on/off switch for the chargers.
120+
That's why they draw power even when the phone isn't plugged in.
121+
The same applies to electronical toothbrushes, laptops, shavers and many other devices.
122+
</p>
123+
<p>
124+
So, there is an easy thing you can keep in mind: Plug off the charger, as soon as your device is charged or not plugged in.
125+
</p>
99126
<footer>
100-
127+
This document was maintained by Andrew, Sawah, Mohammad and Larissa.
128+
Feel free to <a href="#">edit the content on GitHub</a>.
101129
</footer>
102130

103131
</main>

0 commit comments

Comments
 (0)