-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.html
48 lines (47 loc) · 1.51 KB
/
landing.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="landing.css">
<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@300;400&display=swap" rel="stylesheet">
<title>ONOF</title>
</head>
<body>
<div class="nav">
<div class="logo">
<img src="./photos/logo.PNG" alt="">
</div>
<div class="mid-nav">
<ul>
<li>about</li>
<li>FAQS</li>
<li>Contact</li>
</ul>
</div>
<div class="getStarted">
<button>Get Started</button>
</div>
</div>
<div class="content1">
<div class="textContent">
<div class="text">
<h1>ONE NATION <br>ONE FUNDING </h1><br>
<h3>all projects funding under one website</h3>
</div>
<div class="btns">
<button>Post Project</button>
<button>Find Project</button>
<button>Evaluator</button>
</div>
</div>
<div class="gallery">
<img src="photos/hardware.jfif" alt="" class="hardware">
<img src="photos/software.jpg" alt="" class="software">
</div>
</div>
</body>
</html>