-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (81 loc) · 3.15 KB
/
index.html
File metadata and controls
89 lines (81 loc) · 3.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Google Font -->
<!-- Fira Sans -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
<!-- CSS -->
<link rel="stylesheet" href="Styles/index.css" />
<title>Niên luận 1</title>
</head>
<body>
<div class="container">
<h1 class="mb-5">
<i class="fas fa-project-diagram"></i>
Vẽ đồ thị - Tìm chu trình Euler
</h1>
<div class="row">
<div class="col-auto">
<div class="option-card mb-3">
<i class="fas fa-file-upload"></i>
<h3>Vẽ đồ thị bằng .txt</h3>
<p>Tải lên file txt chứa dữ liệu để vẽ</p>
<a href="Pages/fromFileEuler.html" class="btn btn-primary"
>Bắt đầu</a
>
</div>
</div>
<div class="col-auto mb-3">
<div class="option-card">
<i class="fas fa-pencil-alt"></i>
<h3>Vẽ đồ thị thủ công</h3>
<p>Tự tay vẽ và chỉnh sửa đồ thị</p>
<a href="Pages/manualEuler.html" class="btn btn-primary">Bắt đầu</a>
</div>
</div>
<div class="col-auto mb-3">
<div class="option-card">
<i class="fas fa-random"></i>
<h3>Vẽ đồ thị ngẫu nhiên</h3>
<p>Tạo đồ thị ngẫu nhiên tự động</p>
<a href="Pages/randomEuler.html" class="btn btn-primary">Bắt đầu</a>
</div>
</div>
</div>
</div>
<footer>
<p>© 2024 - Niên luận 1. SVTH: Quách Trường Phúc - 227060168. GVHD: Nguyễn Chí Cường</p>
<div class="social-links">
<a href="https://github.com/PhucTruong-ctrl/NienLuan1"
><i class="fab fa-github"></i
></a>
</div>
</footer>
</body>
</html>