-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject_student_review.html
76 lines (66 loc) · 2.71 KB
/
project_student_review.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student Review Database - Gabriel Johnson</title>
<link rel="stylesheet" href="designs.css"> <!-- Link to your CSS file -->
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar">
<div class="container">
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<!-- Student Review Database Project Details -->
<main class="container project-details">
<h2>Student Review Database Project</h2>
<p>This project involved creating a database system for student reviews to provide insights into educational performance.</p>
<h3>Key Features:</h3>
<ul>
<li>Designed a relational database model to store various student-related information.</li>
<li>Implemented a user-friendly interface for data input and querying.</li>
<li>Generated comprehensive reports and statistical analyses based on user queries.</li>
</ul>
<h3>Technologies Used:</h3>
<ul>
<li>SQL (Structured Query Language)</li>
<li>MySQL Workbench</li>
<li>Python (for backend)</li>
<li>Flask</li>
<li>AWS RDS(Database storing)</li>
<li>HTML/CSS/JavaScript (for frontend)</li>
</ul>
<h3>Challenges and Solutions:</h3>
<p>Ensuring data integrity and optimizing query performance were critical challenges. Indexing and normalization helped resolve these issues.</p>
<h3>Outcome:</h3>
<p>The project provided a robust database system for educational institutions to analyze student performance and make data-driven decisions.</p>
<h3>Code Repository:</h3>
<p>Find the code on <a href="https://github.com/your-username/student-review-database" target="_blank" rel="noopener noreferrer">GitHub</a></p>
<h3>Demo:</h3>
<p>Coming soon!</p>
</main>
<!-- Footer Section -->
<footer>
<div class="container">
<!-- Other footer content -->
<section id="contact" class="contact">
<h2>Contact Me:</h2>
<ul class="contact-list">
<li><a href="https://www.linkedin.com/in/gabriel-johnson-b96a0a141/" target="_blank">LinkedIn Profile</a></li>
<li><a href="https://github.com/Obrin24" target="_blank">GitHub Profile</a></li>
<li>Email: [email protected]</li>
<li>Phone: +1-224-388-8614</li>
</ul>
</section>
<p class="footer-text">© 2023 Gabriel Johnson. All rights reserved.</p>
</div>
</footer>
</body>
</html>