This repository has been archived by the owner on Mar 30, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathterms.html
109 lines (83 loc) · 3.67 KB
/
terms.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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Music Website Template</title>
<meta name="viewport" content="width=device-width" />
<meta name="description" content="Music website coded in HTML, CSS, and JQuery" />
<meta name="keywords" content="msuic, website, template, responsive" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link href="https://fonts.googleapis.com/css?family=Tajawal" rel="stylesheet">
<link rel="stylesheet" href="css/style.css" type="text/css" title="style" />
</head>
<body>
<header>
<div id="logo">
<h1><a href="index.html">Music Template</a></h1>
<h2><a href="index.html">Simple. Lightweight. Responsive.</a></h2>
</div>
</header>
<nav class="container">
<ul class="clearfix" id="cfix">
<li class="icon" id="icon">
<a href="javascript:void(0);" onclick="myMenu()">☰ Menu</a>
</li>
<li>
<ul class="scroll" id="scroll">
<li><a href="index.html#home">Home</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#merch">Merch</a></li>
<li><a href="index.html#subscribe">Subscribe</a></li>
<li><a href="index.html#music">Music</a></li>
<li><a href="index.html#news">News</a></li>
<li><a href="index.html#press">Press</a></li>
<li><a href="index.html#videos">Videos</a></li>
<li><a href="index.html#shows">Shows</a></li>
<li><a href="index.html#photos">Photos</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</li>
</ul>
</nav>
<div class="spacer"></div>
<div class="site_content">
<div id="content">
<h3 class="lines">Terms of Use</h3>
<h4>Copyright © 2018 <i>Your Name</i></h4>
<p>This website belongs to <i>Your Name</i> Copyright © 2018. All Rights Reserved. All information presented on the website
is reserved with the exception of third-party logos, pictures, text and / or links that are subject to the copyright rights of their
providers. Any duplication or use of objects such as images or texts in other electronic or printed publications is not permitted without
<i>Your Name's</i> agreement.</p>
</div>
</div>
<footer>
<ul id="social_media">
<li><a href="index.html">
<img src="pictures/icons/facebook.png" alt="Facebook" /></a></li>
<li><a href="index.html">
<img src="pictures/icons/instagram.png" alt="Instagram" /></a></li>
<li><a href="index.html">
<img src="pictures/icons/youtube.png" alt="YouTube" /></a></li>
<li><a href="index.html">
<img src="pictures/icons/twitter.png" alt="Twitter" /></a></li>
<li><a href="index.html">
<img src="pictures/icons/itunes.png" alt="iTunes" /></a></li>
<li><a href="index.html">
<img src="pictures/icons/spotify.png" alt="Spotify" /></a></li>
<li><a href="index.html">
<img src="pictures/icons/amazon.png" alt="Amazon" /></a></li>
<li><a href="index.html">
<img src="pictures/icons/play.png" alt="Google Play" /></a></li>
<li><a href="index.html">
<img src="pictures/icons/shop.png" alt="Store" /></a></li>
<li><a href="index.html#mail">
<img src="pictures/icons/mail.png" alt="Subscribe" /></a></li>
</ul>
<ul id="btmtext">
<li><h6><a href="terms.html">Copyright © 2018 Your Artist / Band Name. All Rights Reserved.</a></h6></li>
<li><h6><a href="web.html">Website Credits</a></h6></li>
</ul>
</footer>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="js/fixedNavMenu.js"></script>
</body>
</html>