Showing
1 changed file
with
6 additions
and
10 deletions
... | @@ -4,9 +4,6 @@ | ... | @@ -4,9 +4,6 @@ |
4 | <meta charset="utf-8"> | 4 | <meta charset="utf-8"> |
5 | <meta name="viewport" content="width=device-width, initial-scale=1"> | 5 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
6 | <title>Web Attendance System</title> | 6 | <title>Web Attendance System</title> |
7 | -<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> | ||
8 | -<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nanum+Gothic:400,700,800&subset=korean"> | ||
9 | -<style>body,h1,h2,h3,h4,h5,p {font-family: "Nanum+Gothic", sans-serif}</style> | ||
10 | <style> | 7 | <style> |
11 | #container { | 8 | #container { |
12 | margin: 15px auto; | 9 | margin: 15px auto; |
... | @@ -188,17 +185,16 @@ function main() | ... | @@ -188,17 +185,16 @@ function main() |
188 | </script> | 185 | </script> |
189 | </head> | 186 | </head> |
190 | <body onload="cv['onRuntimeInitialized']=()=>{ init(); };"> | 187 | <body onload="cv['onRuntimeInitialized']=()=>{ init(); };"> |
191 | - <div class="w3-content" style="max-width:1400px"> | 188 | + <div> |
192 | <!-- Header --> | 189 | <!-- Header --> |
193 | - <header class="w3-container w3-center w3-padding-32"> | 190 | + <header> |
194 | <h1><b>얼굴 인식 출석 시스템</b></h1> | 191 | <h1><b>얼굴 인식 출석 시스템</b></h1> |
195 | <p>Made by <span class="w3-tag">정해갑</span></p> | 192 | <p>Made by <span class="w3-tag">정해갑</span></p> |
196 | </header> | 193 | </header> |
197 | - | 194 | + </div> |
198 | - <div id="container"> | 195 | + <div id="container"> |
199 | - <video autoplay="true" id="videoInput" style="display: none; object-fit: cover;"></video> | 196 | + <video autoplay="true" id="videoInput" style="display: none; object-fit: cover;"></video> |
200 | - <canvas id="canvasOutput"></canvas> | 197 | + <canvas id="canvasOutput"></canvas> |
201 | - </div> | ||
202 | </div> | 198 | </div> |
203 | </body> | 199 | </body> |
204 | </html> | 200 | </html> | ... | ... |
-
Please register or login to post a comment