Add: Basic web site

This commit is contained in:
2018-06-25 09:54:06 +09:00
parent e05275073a
commit 0f62d73393
6 changed files with 232 additions and 4 deletions
+27 -4
View File
@@ -1,17 +1,40 @@
<html>
<html>
<head>
<title>마우스 타자 연습</title>
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="resources/css/homepage.css">
<link rel="stylesheet" type="text/css" href="./src/web/css/module.css">
<link rel="stylesheet" type="text/css" href="./src/web/css/color_button.css">
<script type="text/javascript" src="./resources/jquery/jquery-3.3.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#header").load("./src/web/module/header.html");
$("#footer").load("./src/web/module/footer.html");
});
</script>
</head>
<body bgcolor="lightgrey">
<body bgcolor="white">
<div id="wrapper">
<header id="header">
</header>
<section>
section
</section>
<footer id="footer">
footer
</footer>
</div>
</body>