-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (96 loc) · 3.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css" />
<title>Ram-ch</title>
</head>
<body>
<nav class="navbar background">
<ul class="nav-list">
<div class="logo"><img src="img/logo.jpg" alt="logo" /></div>
<li><a href="#home">Home</a></li>
<li><a href="#about">About me</a></li>
<li><a href="#products">Projects</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact Me</a></li>
</ul>
<div class="rightNav">
<!-- <input type="text" name="search" id="search" /> -->
<!-- <button class="btn btn-sm">Search</button> -->
</div>
</nav>
<section class="background firstsection">
<div class="box-main">
<div class="firstHalf">
<p class="text-big">My Portfolio</p>
<p class="text-small">
Sairam Chennapragada is a Data scientist with a focus on Computer Vision. He has an over all experience of 10+ years in software developement and 5+ years of experience in Machine Learning, Deep Learning and Computer Vision applications. You can find detailed explanation of his work and other demos on this site.
</p>
<div class="buttons">
<button class="btn">Watch the Demos</button>
<!-- <button class="btn">Watch video</button> -->
</div>
</div>
<div class="secondHalf">
<img src="img/circle-cropped.png" alt="image" />
</div>
</div>
</section>
<section class="section">
<div class="paras">
<p class="sectionTag text-big">Image Classification</p>
<p class="sectionSubTag text-small">
This project maily deals with classifying ants, bees, cats and dogs. read more...
</p>
</div>
<div class="thumbnail">
<img
src="https://source.unsplash.com/900x900/?ai,software"
alt="random image"
class="imgfluid"
/>
</div>
</section>
<section class="section left">
<div class="paras">
<p class="sectionTag text-big">Object Detection</p>
<p class="sectionSubTag text-small">
This project mainly deals with detecting customs objects in a given image/video. read more ...
</p>
</div>
<div class="thumbnail">
<img
src="https://source.unsplash.com/900x900/?coding,machine learning"
alt="random image"
class="imgfluid"
/>
</div>
</section>
<section class="section">
<div class="paras">
<p class="sectionTag text-big">Semantic Segmentation</p>
<p class="sectionSubTag text-small">
This project mainly deals with semantic Segmentation of the custom objects in a given image/video. Read more ...
</p>
</div>
<div class="thumbnail">
<img
src="https://source.unsplash.com/900x900/?coding,apple"
alt="random image"
class="imgfluid"
/>
</div>
</section>
<!-- <section class="contact">
<h2 class="text-center">Contact Us</h2>
<div class="form">
<input type="text" name="name" id="name" placeholder="Name">
<input type="number" name="phone" id="phone" placeholder="Phone">
<input type="email" name="email" id="email" placeholder="Email">
</div> -->
</section>
</body>
</html>