| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Golang Hands-on</title>
- <link rel="stylesheet" type="text/css" href="main.css"/>
- <script type="text/javascript" src="js/main.js"></script>
- </head>
- <body>
- <header>
- <img src="img/rabbit.svg"/>
- <div>
- <h1>Golang Hands-on</h1>
- <h2 id="subtitle"> </h2>
- </div>
- </header>
- <section>
- <div class="egg" onclick="egg1()">
- <img id="egg1" src="img/eggs-in-grass.svg"/>
- </div>
- <div class="egg" onclick="egg2()">
- <img id="egg2" src="img/eggs-in-grass.svg"/>
- </div>
- <div class="egg" onclick="egg3()">
- <img id="egg3" src="img/eggs-in-grass.svg"/>
- </div>
- <div class="egg" onclick="egg4()">
- <img id="egg4" src="img/eggs-in-grass.svg"/>
- </div>
- <div class="egg" onclick="egg5()">
- <img id="egg5" src="img/eggs-in-grass.svg"/>
- </div>
- </section>
- </body>
- </html>
|