자습/명품 HTML5 + CSS3 + Javascript

chap 1

지금은 망나뇽 2023. 3. 24. 23:30
<!DOCTYPE html>
<head>
<title>자기소개</title>
<style>
    body {background-color: antiquewhite; color: black; margin-left: 40px; margin-right: 40px;}
    h3   {text-align: center; color: orange;}
    hr   {height: 5px; border: solid grey; background-color: grey;}
    span {color: orange; font-size: 20px;}
</style>
<script>
    function show() {
        document.getElementById("fig").src="1.png";
    }
    function hide() {
        document.getElementById("fig").src="";
    }
</script>
</head>
<body>
    <h3 onmouseover="show()" onmouseout="hide()">망나뇽</h3>
    안녕하세요, 저는 <span>프론트엔드 개발자</span>가 되기 위해 열심히 공부중인 망나뇽 입니다.
    <div><img id="fig" src=""></div>
</body>
</html>

onmouseout

 

onmouseover

 

'자습 > 명품 HTML5 + CSS3 + Javascript' 카테고리의 다른 글

chap 5  (0) 2023.04.08
chap 4  (0) 2023.04.06
chap 3  (0) 2023.04.05
chap 2  (0) 2023.03.25