forked from PriyaGhosal/SkillWise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
music.html
105 lines (92 loc) · 5.32 KB
/
music.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Music Production Courses | Learn Music Production</title>
<meta name="description" content="Explore our Music Production courses covering Music Composition, Sound Design, Recording, and more. Enroll now and build your Modern Physics skills.">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="shortcut icon" href="./favicon.svg" type="image/svg+xml">
</head>
<body>
<section class="section courses has-bg-image">
<div class="container">
<p class="title-sm text-center section-subtitle" id="data-science-label">Explore Courses</p>
<h2 class="headline-md text-center section-title">
Music Production <span class="span has-after">Courses</span>
</h2>
<p class="text-center description">
Music Production involves the creation and development of music tracks, from recording to mixing and mastering. Our courses cover essential skills like audio engineering, sound design, and digital production techniques. Learn how to produce high-quality music and bring your creative vision to life!
</p>
<ul class="grid-list">
<li>
<div class="card course-card">
<div class="card-icon">
<img src="./assets/images/music/music.jpg" width="300" height="100" loading="lazy"
alt="Introduction to Music Production course overview image">
</div>
<div>
<h3 class="title-lg">Introduction to Music Production</h3>
<p class="title-sm">Duration: 4 weeks</p>
</div>
<a href="course-intro-Music-Production.html" class="layer-link" aria-label="Learn more about Introduction to Music Production"></a>
</div>
</li>
<li>
<div class="card course-card">
<div class="card-icon">
<img src="./assets/images/music/composition.jpg" width="300" height="100" loading="lazy"
alt="Music Composition image">
</div>
<div>
<h3 class="title-lg">Music Composition</h3>
<p class="title-sm">Duration: 6 weeks</p>
</div>
<a href="course-Music-composition.html" class="layer-link" aria-label="Learn more about Music Composition"></a>
</div>
</li>
<li>
<div class="card course-card">
<div class="card-icon">
<img src="./assets/images/music/sound.jpg" width="300" height="100" loading="lazy"
alt="Learn Sound Design overview image">
</div>
<div>
<h3 class="title-lg">Sound Design</h3>
<p class="title-sm">Duration: 5 weeks</p>
</div>
<a href="course-Sound-Design.html" class="layer-link" aria-label="Learn more about Sound Design"></a>
</div>
</li>
<li>
<div class="card course-card">
<div class="card-icon">
<img src="./assets/images/music/Recording.jpg" width="300" height="100" loading="lazy"
alt="Recording Concepts course overview image">
</div>
<div>
<h3 class="title-lg">Recording</h3>
<p class="title-sm">Duration: 8 weeks</p>
</div>
<a href="course-Recording.html" class="layer-link" aria-label="Learn more about Recording Concepts"></a>
</div>
</li>
<li>
<div class="card course-card">
<div class="card-icon">
<img src="./assets/images/music/editing.jpg" width="300" height="100" loading="lazy"
alt="Editing course overview image">
</div>
<div>
<h3 class="title-lg">Editing</h3>
<p class="title-sm">Duration: 10 weeks</p>
</div>
<a href="course-Editing.html" class="layer-link" aria-label="Learn more about Editing"></a>
</div>
</li>
</ul>
<a href="enroll.html" class="btn btn-primary">Enroll in a Course</a>
</div>
</section>
</body>
</html>