-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (73 loc) · 4.11 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
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset = "utf-8">
<meta name = "viewport" content = "width=device-width, initial-scale=1">
<title>midnight melodies</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js">
</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src = "eksite.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href = "style.css" rel = "stylesheet">
</head>
<!-- top jumbotron with midnight melodies, my name, and my main links -->
<body>
<!--
<div id="myCarousel" class="carousel container slide">
<div class="carousel-inner">
<div class="active item one"></div>
<div class="item two"></div>
<div class="item three"></div>
</div>
</div>
-->
<div class = "container-fluid">
<img src = "img/hair.png" alt = "cool beans" class = "backdrop">
<div class = "pt-3 container-fluid">
<div class = "jumbotron bg-dark-pink" id = "jumbo">
<h1 class = "display-4" id = "main-title"> midnight melodies~ </h1>
<p id = "under-main" class = "mx-auto"> Hi, I'm Ekjot Multani, and I'm on: </p>
<nav class = "navbar navbar-expand-sm">
<ul class = "navbar-nav">
<li class = "nav-item">
<a href="https://www.linkedin.com/in/ekjotmultani/" class="btn btn-default fa fa-linkedin-square " target="blank"> </a>
</li>
<li class = "nav-item">
<a href="https://github.com/ekjotm" class="btn btn-default fa fa-github" target="_blank" ></a>
</li>
<li class = "nav-item">
<a href="https://soundcloud.com/ottomidnight" class="btn btn-default fa fa-soundcloud" target="_blank" ></a>
</li>
<li class = "nav-item">
<a href="mailto:[email protected]" class="btn btn-default fa fa-envelope" target="_blank" ></a>
</li>
<li class = "nav-item">
<button class=" btn btn-default fa fa-file-pdf-o " onclick="window.open('Ekjot Resume 2020.pdf')" id = "resume" ></button>
</li>
</ul>
</nav>
</div>
</div>
<div class="container">
<h1 id = "my-proj">Project Spotlight</h1>
<div class="row">
<div class="col-sm-6">
<h5>My Synth</h5>
<p>This is a virtual sine wave synthesizer app I created for iOS in Swift. It uses UIKit for the UI and the sound elements came from the open source AudioKit (link to that below). The synth is playable on one screen for two octaves, and I plan on adding buttons to shift octaves up and down as you need. Making this taught me all the mentioned frameworks, . I want to expand on this app now by adding a graphic midi recording and editing feature so that you can create and export melodies on the go wherever you are and use them later in a proper full scale DAW on a computer!</p>
<img src = "img/ss.png" alt = "piano app ss" class = "proj-pic">
<a href="https://github.com/ekjotm/My-Synth">Link to Github repo</a>
<p></p>
<a href="https://github.com/AudioKit/AudioKit">Link to the AudioKit library repo</a>
</div>
<div class="col-sm-6">
<h5>This Website</h5>
<p>A bit meta, but I am making this webite is something that I am very proud of! Learning how to create this taught me not only the HTML, CSS, and JavaScript needed to build it, but also made me think about how to present myself on a webiste, what to chose to present, and how to lay it all out. Something I didn't realize before this! I also learned how to use Bootstrap to properlay layout and design my page. Heres a picture of my old website for comparison.</p>
<img src = "img/site-face.png" alt = "website ss" class = "proj-pic">
</div>
</div>
</div>
</body>
</html>