-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathindex.html
114 lines (114 loc) · 3.77 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./vocabulary.css" />
</head>
<body>
<header class="container">
<nav class="navbar">
<div class="navbar-brand">
<a href="/">
<img src="./assets/images/cc-logo.svg" alt="cc logo" />
</a>
</div>
</nav>
</header>
<footer>
<section class="footer-cont footer-sect">
<div class="footer-first-sect">
<div>
<a href="https://creativecommons.org/">
<img
src="./assets/images/cc.logo-126x30.png"
width="220px"
height="54px"
alt="cc-logo"
/>
</a>
</div>
<div>
<address>
<h4>Creative Commons</h4>
<p>PO Box 1866, Mountain View CA 94042</p>
</address>
<a href="mailto:info@creativecommons.org"
>info@creativecommons.org</a
>
<a href="tel://+1-415-429-6753">+1-415-429-6753</a>
</div>
<div class="footer-socials">
<div class="footer-social-icons">
<a
href="https://www.instagram.com/creativecommons/"
target="_blank"
><img
src="./assets/icons/instagram-logo.svg"
alt="cc-instagram"
/></a>
</div>
<div class="footer-social-icons">
<a href="https://twitter.com/creativecommons" target="_blank"
><img src="./assets/icons/twitter-logo.svg" alt="cc-twitter"
/></a>
</div>
<div class="footer-social-icons">
<a href="https://www.facebook.com/creativecommons" target="_blank"
><img src="./assets/icons/facebook-logo.svg" alt="cc-facebook"
/></a>
</div>
<div class="footer-social-icons">
<a
href="https://www.linkedin.com/company/creative-commons/"
target="_blank"
><img src="./assets/icons/linkedin-logo.svg" alt="cc-linkedin"
/></a>
</div>
</div>
</div>
<div class="footer-second-sect footer sect">
<p>
Except where otherwise
<a
href="https://creativecommons.org/policies#license"
target="_blank"
rel="noopener"
>noted</a
>, content on this site is licensed under a
<a
href="https://creativecommons.org/licenses/by/4.0/"
target="_blank"
rel="noopener"
>Creative Commons Attribution 4.0 International license</a
>.
<a href="https://fontawesome.com/" target="_blank" rel="noopener"
>Icons by Font Awesome.</a
>
</p>
<div>
<img src="./assets/icons/cc-icon.svg" alt="cc-icon" />
<img src="./assets/icons/person.svg" alt="person" />
</div>
</div>
<div class="footer-third-sect footer sect">
<h2>OUR WORK RELIES ON YOU!</h2>
<p>Help us keep Internet free and open.</p>
<button>
<div>
<img src="./assets/icons/cc-icon.svg" alt="cc-icon" />
</div>
<a
href="http://creativecommons.org/donate"
target="_blank"
rel="noopener"
>Donate Now</a
>
</button>
</div>
</section>
</footer>
</body>
</html>