-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServices.html
More file actions
69 lines (60 loc) · 3.07 KB
/
Services.html
File metadata and controls
69 lines (60 loc) · 3.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FutureMajor - Learning Meets Inspiration</title>
<link rel="icon" href="Assets/brand-icon-real.png" type="image/png">
<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=Montserrat:ital,wght@0,100..900;1,100..900&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="Pages/Components css/footer.css">
<link rel="stylesheet" href="Pages/OurServices/services.css">
<link rel="stylesheet" href="Pages/Components css/navbar.css">
</head>
<body>
<nav class="navbar">
<div class="logo-container">
<img src="Assets/brand-icon-real.png" alt="Logo" class="logo">
<span class="brand-title">FutureMajor</span>
</div>
<div class="nav-links">
<a href="Home.html" class="nav-link">HOME</a>
<a href="Services.html" class="nav-link">SERVICES</a>
<a href="PriceList.html" class="nav-link">PRICELIST</a>
<a href="AboutUs.html" class="nav-link">ABOUT US</a>
<a href="ContactUs.html" class="nav-link">CONTACT</a>
</div>
<div class="nav-buttons">
<button class="btn btn-outline">LOG IN</button>
<button class="btn btn-filled">SIGN UP</button>
</div>
</nav>
<div class="services-wrapper">
<div class="services-container">
<div class="service-card">
<img src="Assets/counseling.jpg" alt="Consultation" class="service-image">
<div class="service-content">
<h3 class="service-title">Consultation</h3>
<p class="service-description">Assist students, parents, or professionals in planning and developing the right educational pathways.</p>
</div>
</div>
<div class="service-card">
<img src="Assets/3.png" alt="Interactive Virtual Campus" class="service-image">
<div class="service-content">
<h3 class="service-title">Interactive Virtual Campus</h3>
<p class="service-description">A list of your dream campuses, helping you explore potential educational destinations virtually.</p>
</div>
</div>
<div class="service-card">
<img src="Assets/4.png" alt="Campus Tour" class="service-image">
<div class="service-content">
<h3 class="service-title">Campus Tour</h3>
<p class="service-description">Exploring and walking around your dream campus to get a real feel for university life.</p>
</div>
</div>
</div>
</div>
</body>
</html>