My Family Website – daddy.html


<!DOCTYPE html>
<html lang="en">
<head>
    <title>Final Case Study</title>
    <meta charset="utf-8">
    <link href="my.css" rel="stylesheet">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!--[if lt IE 9]>
        <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"> endif]-->
    <script>
        // daddy
        function daddyOff() {
            var bulb = document.getElementById('daddy_pic');
                bulb.src = "media/daddy.jpg";
        }
        function daddyOn() {
            var bulb = document.getElementById('daddy_pic');
                bulb.src = "media/daddy1.jpg";
        }
    </script>
</head>
<body>
    <div id="wrapper">
        <header>
            <h1>The Smith Family</h1>
        </header>
        <nav>
            <ul>
                <li><a href="index.html">Home</a></li>
                <li><a href="daddy.html">Daddy</a></li>
                <li><a href="mommy.html">Mommy</a></li>
                <li><a href="seraiah.html">Seraiah</a></li>
                <li><a href="samarah.html">Samarah</a></li>
            </ul>
        </nav>
        <div id="content">
            <h2>How d'ye do, I'm DADDY!!</h2>
            <figure>
                <a href="media/daddy_large.jpg">
                    <img id="daddy_pic" src="media/daddy.jpg" 
                        onmouseover="daddyOn()" onmouseout="daddyOff()" 
                        alt="daddy">
                </a>
                <figcaption><small>drawing by: Seraiah Smith, Age 4, 2015</small><br>
                Daddy in pink with a crazy fro.
                </figcaption>
            </figure>
            <h3>About myself, Let’s get’er-dun!</h3>
            
            <p>I was born in California and lived there until I was twelve. I moved 
                to Crete Greece for about three years then moved to Germany for about 
                4 years. I moved back to California when I was 18, moved to Georgia for 
                a half a year around the age of twenty. And once again back to California 
                until 36 when I moved to Utah. I have not lived in one place for more 
                than four years; I’m hoping to end that cycle soon.
                <br><br>The single most significant turning point in my life would be when 
                I met my wife; the Lord used her to bring me closer to Him and filled my 
                life with joy. I am most proud of my daughters and the time my wife 
                dedicates to them, they are the apple of my eye.
                <br><br>I love me some ice cream, I would definitely say that is my 
                favorite food; in fact it’s like my kryptonite! My favorite holiday 
                is Father’s day because it’s all about me, and my favorite season 
                would be spring because it starts to warm up and we gain an hour if 
                daylight in the evening. And my favorite place to go was Cancún; warm 
                weather, warm water that is so clear, and the sand is as fine and soft 
                as flower.</p>
            
            <div class="clearFloat">
                <br>
            </div>
        </div>
        <footer>
            Copyright &copy; 2015 John Smith &nbsp; &nbsp;     Email: 
            <a href="john.smith0067@mail.datc.edu">john.smith0067@mail.datc.edu</a>
        </footer>
    </div>
</body>
</html>