-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 932 Bytes
/
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
<!DOCTYPE html>
<html lang= "en">
<head>
<meta charset="UTF-8">
<title>We Care Foundation</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<nav class="navbar">
<img class="logo" src="logo1.jpg" href="index.html">
<ul>
<li><a class="active" href="index.html">HOME</a></li>
<li><a href="donate.html">DONATE</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</nav>
<div class="center">
<h1>We make a living by what we get. We make a life by what we give.</h1>
<div class="buttons">
<button onclick="window.location.href='about.html'">ABOUT US</button>
<button class="btn2" onclick="window.location.href='donate.html'">DONATE US</button>
</div>
</div>
</body>