-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmenu_old.html
executable file
·79 lines (68 loc) · 2.82 KB
/
menu_old.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
77
78
79
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=0.5, maximum-scale=1.0">
<title>design unit 4</title>
<meta name="author" content="UNIT 4" />
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="shortcut icon" href="contents/favicon1.png" type="image/png">
</head>
<body>
<header>
<div class="contact">
<svg width="250" height="25">
<rect width="250" height="25"/>
<text x="30" y="18" fill="white" font-family="Proxima Nova" font-size = "17">[email protected]</text>
Sorry, your browser does not support inline SVG.
</svg>
</div>
<a class="home" href="menu.html" title="home"><img src="contents/icon_menu.svg" height="25px" width="25px"></a>
</header>
<main>
<div class="menu">
<svg width="500" height="500">
<animateTransform attributeName="transform"
attributeType="XML"
type="rotate"
from="0"
to="360"
dur="20s"
repeatCount="indefinite"/>
<a href="about.html">
<rect x="0" y="0" width="60" height="60" style="fill:black" />
<text fill="magenta" font-family = "Proxima Nova">
<tspan x="62" y="60" font-size = "20">about</tspan>
<tspan x="60" y="30" font-size = "60">кто мы</tspan>
</text>
</a>
<a href="repository.html">
<rect x="440" y="0" width="60" height="60" style="fill:black" />
<text fill="magenta" font-family = "Proxima Nova" transform="rotate(90, 440, 60)">
<tspan x="442" y="60" font-size = "20">repository</tspan>
<tspan x="440" y="30" font-size = "60">репозиторий</tspan>
</text>
</a>
<a href="partners.html">
<rect x="0" y="440" width="60" height="60" style="fill:black" />
<text fill="magenta" font-family = "Proxima Nova" transform="rotate(270, 60, 440)">
<tspan x="62" y="440" font-size = "20">partners</tspan>
<tspan x="60" y="410" font-size = "60">с кем мы</tspan>
</text>
</a>
<a href="contact.html">
<rect x="440" y="440" width="60" height="60" style="fill:black" />
<text fill="magenta" font-family = "Proxima Nova" transform="rotate(180, 440, 440)">
<tspan x="442" y="440" font-size = "20">contacts</tspan>
<tspan x="440" y="410" font-size = "60">где мы</tspan>
</text>
</a>
Sorry, your browser does not support inline SVG.
</svg>
</div>
</main>
<footer>
<p class="copyright">©2018 by design unit 4 :: all rights reserved</p>
</footer>
</body>
</html>