Divs and spans

by danielkwood

HTML

<html>
    <head>
        <title>Divs and Spans</title>
        <link rel="stylesheet" href="theme.css" type="text/css"/>
    </head>
    <body>
        <div>
            <p>This is <span>some text</span> inside my div</p>
        </div>
    </body>
</html>

CSS

div{
    border: 2px solid green;
    background-color: lightyellow;
    padding: 50px;
    width: 20%;
    height: 200px;
}
span{
    color: blue;
    background-color:lightblue;
    font-family: Arial;
}