AfterLogin_Outputpage.html 1.98 KB
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Input Page</title>
    <script src="jquery.js"></script>
    <script>

       
    
    </script>
    <style>

    #banner {
            position: absolute;
            top: 0;
            width: 100%;
            margin-top: 5ch;
            color: white;
        }
    
    #footer {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 50px;
            text-align: center;
            color: white;
        }

    #logout{
        position:absolute;
        right: 20ch;
    }

    #section{
        position: absolute;
        margin-left:5%;
        float:left;
        width: 40%;
        height: 90%;
    }
   
   #container1{
       float: left;
       border: 1px solid white;
       width: 100%;
       height: 45%;
   }
   #container2{
       float: left;       
       border: 1px solid white;
       width: 100%;
       height: 45%;
   }
   #container3{
       float: right;
       border: 1px solid white;
       margin-right:5%;
       width: 40%;
       height: 90%;
   }

    
    </style>
</head>
<body>

    <img src = "images\main_background.jpg" alt="" style="z-index:-1; min-width: 100%; height: 700px;"></img>
    <div id="banner">      
        <h1 style="width: 100%; text-align: center; font-size: 40px;">오늘은 얼마나 먹었어요?</h1>
        <input id ="logout" type="submit" value="Logout" class="btn btn-default" style=" width:100px;font-weight: bold; font-size: 18px; background-color: white;">
    
    <br><br><br> 

    <div id="section">
        <div id="container1">container1</div>
        <br><br><br>

        <div id="container2">container2</div>
    </div>

    <div id="container3">container3</div>
    
    
    </div>

    <div id="footer">오픈소스SW Project 2019-1 고다경 김용재 김태희</div>
</body>
</html>