-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (98 loc) · 3.06 KB
/
index.html
File metadata and controls
114 lines (98 loc) · 3.06 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta property="og:image" content="https://github.com/v4lakers/v4lakers.github.io/blob/master/images/me.jpeg?raw=true" />
<meta charset="UTF-8">
<title>Vivek Sharath: Project Gallery</title>
<link rel='stylesheet' href='https://use.fontawesome.com/releases/v5.0.10/css/all.css'><link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.fa-linkedin-square{
color: #0072b1;
}
.fa-university{
color: #aaaaaa;
}
.fa-github{
color: #6e5494;
}
</style>
<div class="fade-in">
<div class="top">
<h1>Machine & Deep Learning Projects</h1>
<h3>Vivek Sharath</h3>
<br>
<a href="https://www.linkedin.com/in/vivek-sharath-241a91106/"><i class="fa fa-linkedin-square" style="font-size:28px" ></i></a>
 
<a href="https://scholar.google.com/citations?user=yri96x0AAAAJ&hl=en"><i class="fa fa-university" style="font-size:28px"></i></a>
 
<a href="https://github.com/v4lakers"><i class="fa fa-github" style="font-size:28px"></i></a>
</div>
</div>
</head>
<body>
<!-- partial:index.partial.html -->
<section>
<div class="container">
<div class="item" id="1">
<img src="images/kanye.png" alt="">
<div class="text">
<h3>Kanye West Music Generation</h3>
</div>
<div class="button">Learn More</div>
</div>
<div class="item" id="2">
<img src="images/kb24.png" alt="">
<div class="text">
<h3>Kobe Bryant through a Machine Learning Lens</h3>
</div>
<div class="button">Learn More</div>
</div>
<div class="item" id="3">
<img src="images/date.png" alt="">
<div class="text">
<h3>First Impression for Dummies</h3>
</div>
<div class="button">Learn More</div>
</div>
<div class="item" id="4">
<img src="images/matrix.png" alt="">
<div class="text">
<h3>Predicting the presence of a Matrix Language in code-switching</h3>
</div>
<div class="button">Learn More</div>
</div>
<div class="item" id="5">
<img src="images/talk.png" alt="">
<div class="text">
<h3>Converted Voice Detection</h3>
</div>
<div class="button">Learn More</div>
</div>
<div class="item" id="6">
<img src="images/hike.png" alt="">
<div class="text">
<h3>Hiking Dashboard</h3>
</div>
<div class="button">Learn More</div>
</div>
</div>
<!-- Modal -->
<div id="preview" class="modal">
<div class="modal-content">
<span class="close">×</span>
<img id="img" src="">
<div id="details">
<h3 id="title"></h3>
<p id="info">Some text</p>
<br>
<p id="picture">Some text</p>
<div class="button" id="live">View</div>
</div>
</div>
</div>
</section>
<!-- partial -->
<script src="./script.js"></script>
</body>
</html>