-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshowcase.html
More file actions
121 lines (119 loc) · 6.14 KB
/
showcase.html
File metadata and controls
121 lines (119 loc) · 6.14 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>PHS Programming Club - Showcase</title>
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v5.15.4/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
</head>
<body>
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-light" id="mainNav">
<div class="container px-4 px-lg-5">
<a class="navbar-brand" href="https://linktr.ee/prospect_programming_club">Join Here!</a>
<a class="navbar-brand"><button onclick="myFunction()"><img src = "assets\img\moon.png" height = "35"></button></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ms-auto py-4 py-lg-0">
<li class="nav-item"><a class="nav-link px-lg-3 py-3 py-lg-4" href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link px-lg-3 py-3 py-lg-4" href="about.html">About</a></li>
<li class="nav-item"><a class="nav-link px-lg-3 py-3 py-lg-4" href="showcase.html">Showcase</a></li>
<li class="nav-item"><a class="nav-link px-lg-3 py-3 py-lg-4" href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Page Header-->
<header class="masthead" style="background-image: url('https://media.istockphoto.com/photos/programming-code-abstract-technology-background-of-software-developer-picture-id803514366?k=6&m=803514366&s=170667a&w=0&h=_sRqru0zF8_NFOYYQN2MT6lsyOVd-7eI6aYLY5O9P6g=')">
<div class="container position-relative px-4 px-lg-5">
<div class="row gx-4 gx-lg-5 justify-content-center">
<div class="col-md-10 col-lg-8 col-xl-7">
<div class="page-heading">
<h1>Showcase</h1>
<span class="subheading">All the projects created by our members</span>
</div>
</div>
</div>
</div>
</header>
<!-- Post Content-->
<!-- <div class="projectBoxes" >
<h2>2020 - 2021</h2>
<br>
<button type="text" onClick="reveal1()">Reveal</button>
</div>
<div id="projects1" style="display: none;">
<div class="divbox">
<h3> Prospect Proggers</h3>
<p> By: Daniel T, Daniel C, Samvrit <br><br>
Description: A website and <br>
server for teachers to push out <br>
questions and download reports <br>
of their student's responses.</p>
<img src="assets\img\proggers.png" />
</div>
<div class="divbox">
<h3> Callback Compilers</h3>
<p> By: Grady, Kieran, Clement <br><br>
Description: A website for users to <br>
generate and answer math and<br>
chemistry problems of different<br>
categories and difficulties.</p>
<img src="assets\img\callbackCompilers.png" />
</div>
<div class="divbox">
<h3> One Message</h3>
<p> By: Daniel T, Grady, Daphney <br><br>
Description: A website for users <br>
to construct a message to exchange <br>
with others and use a map to track <br>
how far their message went. </p>
<img src="assets\img\oneMessage.png" />
</div>
<div class="divbox">
<h3> Covid Tracker</h3>
<p> By: Maharishi, Gaurav, Clement <br><br>
Description: A website that allows <br>
users to search for Covid-19 <br>
reports locally or from other <br>
states and countries. </p>
<img src="assets\img\covidTracker.png" />
</div>
<div class="divbox">
<h3> Covid Buddy</h3>
<p> By: Amrik, Marko, Wendy <br><br>
Description: A website that <br>
provides advice, information, <br>
and live statistics about the <br>
Coronavirus.
</p>
<img src="assets\img\covidBuddy.png" />
</div>
<div class="divbox">
<h3> Mock Hackathon Marko</h3>
<p> By: Marko <br><br>
Description: An app that shows <br>
users useful items that they'll need <br>
during a specified season. <br>
</p>
<img src="assets\img\mockHack.png" />
</div>
</div> -->
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
</body>
</html>