-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.html
More file actions
90 lines (89 loc) · 4.77 KB
/
tools.html
File metadata and controls
90 lines (89 loc) · 4.77 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>CampusConnect</title>
<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=Raleway:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="tools.css">
</head>
<body>
<header>
<div class="navbar">
<div class="nav-logo">
<div class="logo"></div>
<div class="logo-text">
<p class="nav-logo-name">CAMPUS CONNECT</p>
<p class="nav-logo-tagline">UNLOCK YOUR FUTURE</p>
</div>
</div>
<div class="nav-options">
<ul class="options-list">
<a class="options-a" href="index.php">HOME</a>
<a class="options-a" href="howtoapply.html">HOW TO APPLY</a>
<a class="options-a" href="tools.html">TOOLS</a>
<a class="options-a" href="faq.html">FAQS</a>
<a class="options-a" href="about.html">ABOUT US</a>
</ul>
</div>
<div class="nav-profile border1">
<div class="profile-circle">
<a href="login.html" style="text-decoration: none;">
<i class="fa-regular fa-user" style="font-size: 3rem; font-weight:500; padding-top: 7px; padding-bottom: 7px;"></i>
<span style="font-size: .8rem; ">MY PROFILE</span>
</a>
</div>
</div>
</div>
</header>
<main>
<div class="main-quicklinks">
<h2 style="margin-top: 30px; margin-bottom: 30px;">Tools</h2>
<div class="main-box1" style="margin-bottom: 30px; padding-bottom: 30px;">
<div class="box1-container" >
<i class="fa-solid fa-building-columns" style="font-size: 8rem; color:#100D28"></i>
</div>
<a href="#">University Search Tool</a>
<p>A powerful search engine allowing students to filter universities based on location, course offerings, ranking, and other criteria.</p>
</div>
<div class="main-box2" style="margin-bottom: 30px; padding-bottom: 30px;">
<div class="box2-container" >
<i class="fa-solid fa-book" style="font-size: 8rem; color:#100D28"></i>
</div>
<a href="#">Course Finder</a>
<p>A tool that helps students find courses based on their interests, academic background, and career goals.</p>
</div>
<div class="main-box3" style="margin-bottom: 30px; padding-bottom: 30px;">
<div class="box3-container" >
<i class="fa-solid fa-chalkboard-user" style="font-size: 7rem; color:#100D28"></i>
</div>
<a href="#">Application Tracker</a>
<p>A dashboard where students can monitor the status of their applications in real-time, receive notifications, and view deadlines.</p>
</div>
<div class="main-box4" style="margin-bottom: 30px; padding-bottom: 30px;">
<div class="box4-container" >
<i class="fa-solid fa-file" style="font-size: 8rem; color:#100D28"></i>
</div>
<a href="#">Documents Upload</a>
<p>A secure portal where students can upload, manage, and submit required documents for their university applications.</p>
</div>
</div>
<footer>
<div class="foot-top">
<a class="going-top" href="#" style="text-decoration: none; color:aliceblue">Back to top <i class="fa-solid fa-angles-up"></i></a>
</div>
<div class="foot-options">
<ul>
<a href="legal.html" style="text-decoration: none; color:aliceblue"> Legal disclosure</a>
<a href="terms.html" style="text-decoration: none; color:aliceblue"> Terms and Conditions</a>
<a href="privacy.html" style="text-decoration: none; color:aliceblue"> Privacy Policy</a>
<a href="contactus.html" style="text-decoration: none; color:aliceblue"> Contact Us</a>
</ul>
<p>© 2025 CampusConnect</p>
</div>
</footer>
</body>
</html>