├── css └── style.css └── index.html /css/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | font: 35px 'Roboto', sans-serif; 3 | /* font-family:'Roboto', sans-serif; 4 | font-size: 35px; */ 5 | } 6 | 7 | p { 8 | font-family:'Roboto', sans-serif; 9 | font-style: italic; 10 | } 11 | 12 | p span { 13 | font-weight: bold 14 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Cyberdude webchannel 6 | 7 | 8 | 9 | 10 |

Cyberdude webchannel

11 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta esse perferendis neque? Similique, culpa eaque, saepe fugit vel tempora alias iusto beatae esse repellat fuga optio ea tenetur et odio.

12 | 13 | --------------------------------------------------------------------------------