-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbloodbank.html
60 lines (48 loc) · 1.89 KB
/
bloodbank.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="bloodbank.css">
<script src="bloodbank.js"></script>
<title>Bloodbank</title>
</head>
<body>
<h1 class="title">Blood-Bank</h1>
<button><a href="#">Visit</a></button>
<div class="slider">
<div class="slide-image fade">
<!-- <div class="num">1/2</div> -->
<img src="bloodbank.png" alt="">
</div>
<div class="slide-image">
<!-- <div class="num">2/2</div> -->
<img src="bloodbankadmin.png" alt="">
</div>
<a class="Back" onclick="plusSlides(-1)">❮</a>
<a class="forward" onclick="plusSlides(1)">❯</a>
</div>
<div class="dot-container" style="text-align:center">
<span class="dots" onclick="currentSlide(1)"></span>
<span class="dots" onclick="currentSlide(2)"></span>
<!-- <span class="dots" onclick="currentSlide(3)"></span> -->
</div>
<!-- The circles/dots -->
<div class="description">
<div class="about">
<h2>About</h2>
<p>Main aim was to serve the society with the possible small deeds as a result website is dsigned </p>
<p>This website can serve the major puropose in finding a match of a person withe the respective blooodgroup</p>
<p>We have designed this website with the home page where students of our college gets registered</p> <p>If a person in a need can ask for their type and as soon as admin approves the request a message notifies the respective group of students.</p>
</div>
<div class="techstack">
<h2>Techstack</h2>
<p>Frontend: HTML,CSS</p>
<p>Backend: Php</p>
<p>Database: MySQL</p>
<p>Tools:PhpMyAdmin</p>
<p>Server:Apache</p>
</div>
</div>
</body>
</html>