-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.html
More file actions
20 lines (20 loc) · 810 Bytes
/
Copy pathheader.html
File metadata and controls
20 lines (20 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div class="container-fluid headerContainer">
<div class="row justify-content-center headerRow">
<div class="col-3 justify-content-center">
<span id="headerSchedule" class="headerButton far fa-calendar-alt" onclick="location.href='schedule.html'">
<div class="headerLabel">Schedule</div>
</span>
</div>
<div class="col-3 justify-content-center">
<span id="headerFindGroup" class="headerButton fas fa-plus-circle" onclick="location.href='findgroup.html'">
<div class="headerLabel">Groups</div>
</span>
</div>
<div class="col-3 justify-content-center">
<span id="headerProfile" class="headerButton fas fa-user" onclick="location.href='signup_2.html'">
<div class="headerLabel">Profile</div>
</span>
</div>
</div>
<div class="row headerBottom no-gutters"></div>
</div>