-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcentered-logo-nav.html
34 lines (34 loc) · 999 Bytes
/
centered-logo-nav.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Center-aligned Logo Navigation</title>
<link rel="stylesheet" href="css/centered-logo-nav.css">
<base href="#">
</head>
<body>
<header>
<svg preserveAspectRatio="xMinYMin" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Cars</title>
<desc>A chrome logo for the "Cars" movie</desc>
<defs>
<mask id="carsLogoMask">
<image width="100%" height="100%" xlink:href="https://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/cars-logo-mask.png"></image>
</mask>
</defs>
<image mask="url(#carsLogoMask)" width="100%" height="100%" xlink:href="https://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/cars-logo.jpg"></image>
</svg>
</header>
<nav>
<span>
<a href="">Home</a>
<a href="">About</a>
</span>
<span>
<a href="">Contact</a>
<a href="">Retro</a>
</span>
</nav><!-- /header -->
</body>
</html>