-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
35 lines (35 loc) · 1.76 KB
/
header.php
File metadata and controls
35 lines (35 loc) · 1.76 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
<header class="headerSection">
<div class="headerContainer">
<img src="assets/images/logo.png" alt="7/11 Banner Logo" class="headerLogo">
</div>
<div class="headerNavigationContainer">
<a href="praesentium.php" class="headerLink">
<?php echo $headerMenu[0]; ?>
<div class="headerLinkHover"></div>
</a>
<a href="index.php" class="headerLink">
<?php echo $headerMenu[1]; ?>
<div class="headerLinkHover headerLinkActive"></div>
</a>
<a href="dignissimos.php" class="headerLink">
<?php echo $headerMenu[2]; ?>
<div class="headerLinkHover"></div>
</a>
<a href="blanditiis.php" class="headerLink">
<?php echo $headerMenu[3]; ?>
<div class="headerLinkHover"></div>
</a>
</div>
<div class="headerMobileNavigationBackground" onclick="closeNavigationMobileMenuContainer()"></div>
<div class="headerMobileNavigationContainer">
<div class="headerContainer">
<img src="assets/images/logo.png" alt="7/11 Banner Logo" class="headerLogo">
</div>
<a href="praesentium.php" class="headerMobileNavigationContainerLink headerMobileNavigationContainerLink1"
><?php echo $headerMenu[0]; ?></a>
<a href="index.php" class="headerMobileNavigationContainerLink"><?php echo $headerMenu[1]; ?></a>
<a href="dignissimos.php" class="headerMobileNavigationContainerLink"><?php echo $headerMenu[2]; ?></a>
<a href="blanditiis.php" class="headerMobileNavigationContainerLink"><?php echo $headerMenu[3]; ?></a>
<p class="headerMobileNavigationContainerAuthor">Made with ❤️ by <?php echo $authorAlias; ?></p>
</div>
</header>