-
Notifications
You must be signed in to change notification settings - Fork 88
/
index.html
76 lines (60 loc) · 1.99 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
<!DOCTYPE html>
<html>
<title>Portfolio</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body,
h3 {
font-family: "Montserrat", sans-serif
}
.w3-row-padding img {
margin-bottom: 12px
}
.w3-sidebar {
width: 120px;
background: #222;
}
#main {
margin-left: 120px
}
@media only screen and (max-width: 600px) {
#main {
margin-left: 0
}
}
</style>
<body class="w3-black" onload="loadData()">
<p align="middle">
<font size="600"><span id="name"></span></font>
</p>
<p align="middle">______________________</p>
<p align="middle" id="title"></p>
</header>
<div class="w3-content w3-justify w3-text-grey w3-padding-64" id="about">
<h2 class="w3-text-light-grey">INTRODUCTION</h2>
<hr style="width:200px" class="w3-opacity">
<p id="intro">
</p>
<h3 class="w3-padding-16 w3-text-light-grey">My Skills</h3>
<div id="skills"></div>
</div>
</div>
<div class="w3-padding-64 w3-content w3-text-grey" id="contact">
<h2 class="w3-text-light-grey">Contact Me</h2>
<hr style="width:200px" class="w3-opacity">
<div class="w3-section">
<p><i class="fa fa-map-marker fa-fw w3-text-white w3-xxlarge w3-margin-right"></i><span id="location"></span></p>
<p><i class="fa fa-phone fa-fw w3-text-white w3-xxlarge w3-margin-right"></i> Phone: +91 <span id="phone"></span>
</p>
<p><i class="fa fa-envelope fa-fw w3-text-white w3-xxlarge w3-margin-right"> </i> Email: <span id="email"></span>
</p>
</div><br>
</div>
<script src="jquery-3.4.1.js"></script>
<script src="index.js"></script>
</body>
</html>