index.html 1.96 KB
Newer Older
Patiphan Marak's avatar
Patiphan Marak committed
1 2 3 4 5 6
<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <title>Hello World!</title>
Patiphan Marak's avatar
Patiphan Marak committed
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
    <style>
            .container {
              position: relative;
              width: 50%;
            }
            
            .image {
              display: block;
              width: 100%;
              height: auto;
            }
            
            .overlay {
              position: absolute;
              bottom: 0;
              left: 0;
              right: 0;
              background-color: #008CBA;
              overflow: hidden;
              width: 100%;
              height: 0;
              transition: .5s ease;
            }
            
            .container:hover .overlay {
              height: 100%;
            }
            
            .text {
              color: white;
              font-size: 20px;
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              -ms-transform: translate(-50%, -50%);
              text-align: center;
            }
            </style>
Patiphan Marak's avatar
Patiphan Marak committed
46 47 48 49 50
</head>

<body>
    <h1>Hello World!</h1>
    <div class="w3-container">
Patiphan Marak's avatar
Patiphan Marak committed
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
        Node version
        <script>document.write(process.versions.node)</script>
        <br>
        <img src="http://share.olanlab.com/userfiles/olan/images/nodejs/nodejs-logo(1).jpg" class="w3-border" alt="Norway" style="padding:4px;width:50%">
        <br> Chrome version
        <script>document.write(process.versions.chrome)</script>
        <br>
        <img src="https://lh3.googleusercontent.com/nYhPnY2I-e9rpqnid9u9aAODz4C04OycEGxqHG5vxFnA35OGmLMrrUmhM9eaHKJ7liB-=w300-rw"
            class="w3-border" alt="Norway" style="padding:16px;width:50%">
        <br> Electron version
        <script>document.write(process.versions.electron)</script>
        <br>
        <img src="https://hackr.io/tutorials/learn-electron/svg/electron_logo" class="w3-border" alt="Norway" style="padding:16px;width:50%">

    </div>
Patiphan Marak's avatar
Patiphan Marak committed
66
    
Patiphan Marak's avatar
Patiphan Marak committed
67 68 69
</body>

</html>