-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms-conditions.html
More file actions
140 lines (125 loc) · 5.69 KB
/
Copy pathterms-conditions.html
File metadata and controls
140 lines (125 loc) · 5.69 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Terms & Conditions @ Digital Divide Records</title>
<link rel="icon" href="ddrlogo.ico" type="icon">
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
</head>
<body>
<nav class="navbar">
<div class="logo">
<img src="logo.jpg" alt="Digital Divide Records Logo">
</div>
<button class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</button>
<ul class="nav-menu">
<li><a href="index.html" data-tooltip="Learn about Digital Divide Records">About</a></li>
<li><a href="artists.html" data-tooltip="Our featured artists">Artists</a></li>
<li><a href="demos.html" data-tooltip="Submit your demos">Demos</a></li>
<li><a href="releases.html" data-tooltip="Browse our releases">Releases</a></li>
</ul>
</nav>
<div class="releases-container">
<h1>Terms & Conditions</h1>
<p class="releases-intro">
Last updated: <script>document.write(new Date().toLocaleDateString())</script>
</p>
<div class="release-catalog">
<div class="header">
<h2>1. Acceptance of Terms</h2>
<p>By accessing and using the Digital Divide Records website, you accept and agree to be bound by the terms and provision of this agreement.</p>
<h2>2. Music Submissions</h2>
<p>When submitting music to Digital Divide Records:</p>
<ul>
<li>You confirm that you own all rights to the music or have obtained necessary permissions</li>
<li>You grant Digital Divide Records the right to review your submission</li>
<li>You understand that submission does not guarantee acceptance</li>
</ul>
<h2>3. Intellectual Property</h2>
<p>All content on this website including music, images, logos, and text is the property of Digital Divide Records and is protected by copyright laws.</p>
<h2>4. User Conduct</h2>
<p>When using our website, you agree not to:</p>
<ul>
<li>Violate any applicable laws or regulations</li>
<li>Impersonate any person or entity</li>
<li>Interfere with the proper functioning of the website</li>
</ul>
<h2>5. Privacy Policy</h2>
<p>Your use of this website is also governed by our <a href="privacy-policy.html">Privacy Policy</a>.</p>
<h2>6. Changes to Terms</h2>
<p>Digital Divide Records reserves the right to modify these terms at any time. Your continued use of the website constitutes your acceptance of the revised terms.</p>
<h2>7. Contact Information</h2>
<p>If you have any questions about these Terms, please contact us at infoquery@digitaldividerecords@gmail.com</p>
</div>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<div class="footer-container">
<div class="footer-section">
<h3>Connect With Us</h3>
<p>Follow us on social media for the latest updates & releases.</p>
<div class="social-icons">
<a href="https://web.facebook.com/DigitalDivideRecords/" target="_blank" class="social-icon" aria-label="Facebook">
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://instagram.com/digitaldividerecords" target="_blank" class="social-icon" aria-label="Instagram">
<i class="fab fa-instagram"></i>
</a>
<a href="https://x.com/DigitalDivideRe" target="_blank" class="social-icon" aria-label="X (Twitter)">
<i class="fab fa-twitter"></i>
</a>
<a href="https://soundcloud.com/digitaldividerecs" target="_blank" class="social-icon" aria-label="Soundcloud">
<i class="fab fa-soundcloud"></i>
</a>
<a href="https://www.mixcloud.com/Digital_Divide_Records/" target="_blank" class="social-icon" aria-label="Mixcloud">
<i class="fab fa-mixcloud"></i>
</a>
</div>
</div>
!<!--<div class="footer-section">
<h3>Download Stores</h3>
<div class="music-platforms">
<a href="https://www.beatport.com/label/digital-divide-records/100802" target="_blank" class="platform-link">
Beatport
</a>
<a href="https://www.traxsource.com/label/62753/digital-divide-records" target="_blank" class="platform-link">
Traxsource
</a>
<a href="https://www.junodownload.com/labels/Digital+Divide/" target="_blank" class="platform-link">
Juno Download
</a>
</div>
</div>-->
<div class="footer-section">
<h3>Legal</h3>
<div class="legal-links">
<a href="privacy-policy.html" class="legal-link">Privacy Policy</a>
<a href="terms-conditions.html" class="legal-link">Terms & Conditions</a>
<a href="mailto:infoqdigitaldividerecords@gmail.com" class="legal-link">Contact Us</a>
</div>
</div>
</div>
<!--LOGO IMAGE
<div class="footer-logo">
<img src="logo.jpg" alt="Digital Divide Records Logo">
</div>
</div>
END OF LOGO IMAGE-->
<div class="copyright">
© <script>document.write(new Date().getFullYear())</script> Digital Divide Records. All Rights Reserved.
</div>
</footer>
<script src="script.js"></script>
</body>
</html>