-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
48 lines (46 loc) · 1.91 KB
/
main.html
1
2
3
4
5
6
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
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=chrome">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UML</title>
<style>
div#mobile {
box-sizing: border-box;
width: 300px;
height: 500px;
margin: 20px auto;
border: 6px solid black;
border-radius: 40px 40px 40px 40px;
background-image: url('symbol.jpg');
background-repeat: no-repeat;
background-position: 50% 66%;
text-align: center;
}
input {
width: 200px;
height: 40px;
margin: 10px auto;
border-radius: 10px 10px 10px 10px;
background-color: lightskyblue;
text-align: center;
font-size: 20px;
font-weight: bold;
align-items: center;
}
</style>
<script src="https://use.fontawesome.com/releases/v5.2.0/js/all.js"></script>
</head>
<body>
<div id="mobile">
<h4>•∙• ――――― •∙•</h4>
<h1 style="font-weight: bold; color: dodgerblue; font-size: 60px;">UMS</h1>
<input type="button" onclick="document.location.href='selectLecture.html'" value="강의 조회"></button>
<input type="button" onclick="document.location.href='selectHomework.html'" value="과제 조회"></button>
<input type="button" onclick="document.location.href='selectNotice.html'" value="공지사항 조회"></button>
<br><br>                                    
<i class="fas fa-cog" style="font-size: 30px;" onclick="document.location.href='settings.html'"></i>
</div>
</body>
</html>