-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
131 lines (115 loc) · 3.47 KB
/
index.html
File metadata and controls
131 lines (115 loc) · 3.47 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>5팀 링크 모음</title>
<style>
body {
margin: 0;
font-family: system-ui, -apple-system, "Noto Sans KR", sans-serif;
background: #fff;
color: #111;
}
.wrap {
max-width: 900px;
margin: 0 auto;
padding: 40px 20px;
}
h1 {
font-size: 28px;
font-weight: 800;
}
.grid {
margin-top: 24px;
display: grid;
gap: 16px;
}
.card {
border: 1px solid #e5e7eb;
border-radius: 14px;
padding: 18px;
background: #f9fafb;
}
.title {
font-size: 18px;
font-weight: 800;
margin-bottom: 6px;
}
.desc {
font-size: 14px;
color: #6b7280;
margin-bottom: 12px;
}
.actions {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.btn {
padding: 10px 14px;
border-radius: 10px;
border: 1px solid #e5e7eb;
background: #fff;
font-weight: 700;
text-decoration: none;
color: #111;
cursor: pointer;
}
.btn.primary {
background: #ef4444;
color: #fff;
border: none;
}
.url {
margin-top: 10px;
font-size: 12px;
color: #6b7280;
word-break: break-all;
}
</style>
</head>
<body>
<div class="wrap">
<h1>📌 5팀 시연 & 자료 링크</h1>
<section class="grid">
<!-- Demo -->
<div class="card">
<div class="title">🚀 시연 URL</div>
<p class="desc">배포된 Flask 서비스</p>
<div class="actions">
<a class="btn primary" target="_blank"
href="https://port-0-daily-emotion-log-mjc8e0txb19763aa.sel3.cloudtype.app/">
바로 열기
</a>
</div>
</div>
<!-- PPT -->
<div class="card">
<div class="title">📄 발표 자료 (Google Slides)</div>
<p class="desc">온라인 발표용 PPT</p>
<div class="actions">
<a class="btn primary" target="_blank"
href="https://docs.google.com/presentation/d/1lJUaUYSy3uyBaGqkS9S079qX-tsxJw2n/present?slide=id.p1">
바로 열기
</a>
</div>
</div>
<!-- PDF -->
<div class="card">
<div class="title">📑 발표 자료 (PDF)</div>
<p class="desc">로컬 저장된 PDF 파일</p>
<div class="actions">
<a class="btn primary" target="_blank"
href="file:///D:/Downloads/5%EC%A1%B0%20Flask%20%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8.pptx%20(1).pdf">
PDF 열기
</a>
</div>
<div class="url">
file:///D:/Downloads/5조 Flask 프로젝트.pdf
</div>
</div>
</section>
</div>
</body>
</html>