forked from krishkneeka/ResearchMatch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHowItWorks.html
More file actions
90 lines (84 loc) · 3.26 KB
/
Copy pathHowItWorks.html
File metadata and controls
90 lines (84 loc) · 3.26 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Research Match - How it Works</title>
<link rel="stylesheet" href="HowItWorks.css" />
<script src="script.js" defer></script>
</head>
<body>
<div class="min-h-screen">
<!-- ✅ Proper navbar layout -->
<div class="header">
<div class="header-left">
<img
src="https://cdn.builder.io/api/v1/image/assets/TEMP/7387288f561c5abfc229e8e25a5254d5e770b656"
alt="Logo"
class="logo"
/>
<img
src="https://cdn.builder.io/api/v1/image/assets/TEMP/51badf032b9702ce0f5f921203e3e3ff33361d49"
alt="Research Match"
class="logo-image"
/>
</div>
<nav class="navigation">
<a href="home.html" class="nav-link">Home</a>
<a href="about.html" class="nav-link">About</a>
<a href="search.html" class="nav-link">Explore</a>
<a href="HowItWorks.html" class="nav-link">How it works</a>
</nav>
<div class="right-icons">
<img
id="darkModeToggle"
src="https://cdn.builder.io/api/v1/image/assets/TEMP/03961ef43cf487fbfd5436c4d9fe688589c1420a"
alt="Toggle dark mode"
class="dark-mode-icon"
/>
</div>
</div>
<!-- ✅ Hero Section -->
<div class="hero-section">
<div class="hero-title">How it Works</div>
<div class="hero-description">
Research Match makes it easy for undergraduate students to find
research opportunities. Here's how it works
</div>
</div>
<!-- ✅ Features Section -->
<div class="features-container">
<div class="feature-item">
<img src="https://cdn.builder.io/api/v1/image/assets/TEMP/dcc80048842e769c0008ac5b698200475d650818" alt="" class="feature-icon" />
<div class="feature-content">
<div class="feature-title">Search for interests</div>
<div class="feature-description">
Enter keywords based on your academic interests to find relevant
research projects
</div>
</div>
</div>
<div class="feature-item">
<img src="https://cdn.builder.io/api/v1/image/assets/TEMP/6c5add4ead63f307ab39ebe351e10ae62a4ae53f" alt="" class="feature-icon" />
<div class="feature-content">
<div class="feature-title">Browse Professors</div>
<div class="feature-description">
View profiles of professors who are conducting research in your
areas of interest
</div>
</div>
</div>
<div class="feature-item">
<img src="https://cdn.builder.io/api/v1/image/assets/TEMP/7664dd5166edeb589d8bc64e79233dd5ee2f063a" alt="" class="feature-icon" />
<div class="feature-content">
<div class="feature-title">Reach Out</div>
<div class="feature-description">
Easily contact professors to express your interest and inquire
about available research positions
</div>
</div>
</div>
</div>
</div>
</body>
</html>