-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (51 loc) · 2.7 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>
<head>
<meta charset="utf-8">
<title>Java Learning</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initialscale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
</head>
<body>
<div class="d-flex align-items-center min-vh-100">
<div class="container mt-2 mb-2">
<div class="row justify-content-center">
<div class="col-lg-5">
<img src="images/goals_1.jpg" class="rounded mx-auto d-block w-100" alt="Goals Tracker">
</div>
</div>
<div class="row justify-content-center">
<div class="col">
<h1 class="display-4 text-center mb-1 p-3"><strong>Welcome To Java Learning!</strong></h1>
</div>
</div>
<div class="row justify-content-center">
<div class="col">
<figure class="text-center mb-1 p-3">
<blockquote class="blockquote">
<p>You are never too old to set another goal or to dream a new dream</p>
</blockquote>
<figcaption class="blockquote-footer">
C.S. Lewis
</figcaption>
</figure>
</div>
</div>
<div class="row justify-content-center">
<div class="col">
<div class="btn-group d-grid gap-2 col-6 mx-auto text-center" role="group" aria-label="Basic outlined example">
<!-- <button>Mentor</button> -->
<div class="btn btn-outline-primary" id="r-mentor-btn">Mentor</div>
<div class="btn btn-outline-primary" id="r-mentee-btn">Mentee</div>
<!-- <a class="btn btn-outline-primary" href="register-login.html" role="button">Mentor</a> -->
<!-- <a class="btn btn-outline-primary" id="r-mentee-btn" href="register-login.html" role="button">Mentee</a> -->
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<script src="scripts/register-welcome.js" type="text/javascript"></script>
</body>
</html>