-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
123 lines (99 loc) · 4.41 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
<!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="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="CSS/style.css">
<link rel="stylesheet" href="CSS/responsive.css">
<title>PORTFOLIO SITE | Home</title>
<link rel="shortcut icon" href="Images/resume.png" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- Header -->
<div class="container-fluid">
<div class="row mt-4">
<div class="col-9 col-sm-6">
<div id="header">
<span> <a href="index.html"> <img id="header-logo" src="Images/resume.png" alt=""></a> </span>
<span id="header-text1"> CHAITANYA KATORE</span>
<span id="header-text2"> Fresher Devloper</span>
</div>
</div>
<div class="col-3 col-sm-6">
<div class="nav-bar" id="mynav-bar">
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
<a id="nav-contact" href="contact.html"> Contact </a>
<a id="nav-project" href="project.html"> Project </a>
<a id="nav-resume" href="resume.html"> Resume </a>
</div>
</div>
</div>
</div>
<!-- title -->
<div class="container">
<div id="intro" class="row">
<div id="order2" class="col-12 col-sm-6">
<div class="d-flex">
<img id="image" src="Images/ckformal.jpg" alt="">
</div>
</div>
<div id="title" class="col-12 col-sm-6">
<div>
<h1>Hello </h1>
<h3>A Bit About Me</h3>
<p>I am Chaitanya Katore Interested in the role of a Data Scientist and Software Engineer where I can contribute my analytical skills and problem solving skills acquired by throughout my degree in IT Engineering. Looking for a opportunities where my skills are utilized in the maximum way possible.
</p>
</div>
<div id="titlelink">
<div class="row">
<div class="col-4"><a id="resume" href="resume.html"> Resume</a></div>
<div class="col-4"><a id="projects" href="project.html"> Projects </a></div>
<div class="col-4"><a id="contact" href="contact.html"> Contact </a></div>
</div>
</div>
</div>
</div>
</div>
<!-- footer -->
<div class="container-fluid">
<div id="footerline">
<hr>
</div>
<div class="row" id="ftflex-container">
<div class="col-sm-3 col-12" id="item-phone">
<h1>Phone</h1>
<p>+91 7743880792</p>
</div>
<div class="col-sm-3 col-12" id="item-email">
<h1>Email</h1>
<p>[email protected]</p>
</div>
<div class="col-sm-3 col-12" id="item-socialm">
<h1>Follow Me</h1>
<a href="https://bit.ly/3duoDEJ" target="_blank"> <i class="fa fa-linkedin" aria-hidden="true"></i></a>
<a href="https://github.com/chaitanyakatore" target="_blank"> <i class="fa fa-github" aria-hidden="true"></i> </a>
<a href="https://twitter.com/ChaitanyaKatore?t=UYcP0YXSoIFdms5CiCz3jg&s=09" target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i> </a>
</div>
<div class="col-sm-3 col-12" id="item-copyright">
<p>© 2023 By Chaitanya Katore <br></p>
</div>
</div>
</div>
<script>
function myFunction() {
var x = document.getElementById("mynav-bar");
if (x.className === "nav-bar") {
x.className += " responsive";
} else {
x.className = "nav-bar";
}
}
</script>
</body>
</html>