-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (67 loc) · 2.67 KB
/
index.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<header>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous" />
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/stylesheet.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<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=Poppins:wght@700&display=swap" rel="stylesheet" />
</header>
<body>
<!-- Header -->
<div class="row" id="welcome">
<div class="col-sm-3" id="btn_left">
<button type="button" class="btn btn-primary btn-profile">
<i class="fa-solid fa-user" style="color: black ;"></i>
</div>
<div class="col-sm-6">
<h1 id="title_header">Welcome Yann !</h1>
</div>
<div class="col-sm-3" id="btn_right">
</button>
</div>
</div>
<!-- Title -->
<div class="row" id="title_semestre">
<div class="col-sm-3" id="btn_left"></div>
<div class="col-sm-6">
<h1 class="title">Semestres</h1>
</div>
<div class="col-sm-3" id="btn_right">
<button type="button" class="btn btn-primary btn-add" onclick="window.location.href='newSemester.html'">
<i class="fa-solid fa-plus"></i>
</button>
</div>
</div>
<!-- Semestres -->
<a href="semester.html">
<div class="semestre_button">
<h1 class="big_card_title">Semestre 1</h1>
</div>
</a>
<a href="semester.html">
<div class="semestre_button">
<h1 class="big_card_title">Semestre 2</h1>
</div>
</a>
<a href="semester.html">
<div class="semestre_button">
<h1 class="big_card_title">Semestre 3</h1>
</div>
</a>
</body>
</html>