forked from rasmirajesh/tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
59 lines (54 loc) · 2.16 KB
/
home.html
File metadata and controls
59 lines (54 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BODHI</title>
<link rel="stylesheet" href="style.css">
<!-- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">-->
</head>
<body>
<div class="container">
<header class="header">
<img src="./public/BODHI.png" alt="" height="60px" style="border-radius: 50%;">
<nav class="navbar">
<ul class="nav-links">
<li><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<div class="contai">
<div class=cont>
<div class="box">
<div class="image-area">
<img src="group-study.png" alt="People working" style="border-radius: 5%;">
</div>
<div class="quote">
<p class="quote">"Don't practice until you get it right. Practice until you can't get it wrong."</p>
</div>
</div>
<div class="box">
<div class="todo-list">
<h2><a href="todo.html">TO DO LIST</a></h2>
</div>
</div>
</div>
<div class="bottom-plus">
<button>+</button>
</div>
</div>
<div class="containe">
<div class="box extra">add a new member</div>
<div class="box extra">upload notes</div>
<div class="box extra">upload pdf</div>
<div class="box extra">upload videos</div>
</div>
<footer class="footer">
<p>© 2025 BODHI. All rights reserved.</p>
</footer>
</div>
</body>
</html>