-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·99 lines (93 loc) · 4 KB
/
Copy pathindex.html
File metadata and controls
executable file
·99 lines (93 loc) · 4 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
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Résumé | Nagendra Chaudhary </title>
<link rel="stylesheet" type="text/css" href="assets/css/index.css">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,600" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="header">
<div class="header-title-section">
<div class="header-title">
Your Name
</div>
<div class="header-subtitle">
<div class="contact-item">
<a id="contactEmail" target="_blank" href="">
abc@xyz.com
</a>
</div>
<div class="contact-item" id="contactPhone">
+91-1234567890
</div>
<div class="contact-item">
<a id="contactWebsite" target="_blank" href="">
https://profile.com
</a>
</div>
</div>
</div>
</div>
<div class="info-section">
<div class="info-col info-left">
<div class="cat-header">
<span class="cat-indicator">
<i class="fa fa-chevron-right" aria-hidden="true"></i>
</span>
<span class="cat-title">About Me</span>
</div>
<div class="cat-def-body" id="aboutIntro">
This is something about me
</div>
</div>
<div class="info-col info-right">
<div class="cat-header">
<span class="cat-indicator">
<i class="fa fa-chevron-right" aria-hidden="true"></i>
</span>
<span class="cat-title">Work Experience</span>
</div>
<div class="cat-list-body">
<ul id="experienceList"></ul>
</div>
<div class="cat-header">
<span class="cat-indicator">
<i class="fa fa-chevron-right" aria-hidden="true"></i>
</span>
<span class="cat-title">Skills</span>
</div>
<div class="cat-list-body">
<ul id="skillList"></ul>
</div>
<div class="cat-header">
<span class="cat-indicator">
<i class="fa fa-chevron-right" aria-hidden="true"></i>
</span>
<span class="cat-title">
Projects</span>
</div>
<div class="cat-list-body">
<ul id="projectList"></ul>
</div>
<div class="cat-header">
<span class="cat-indicator">
<i class="fa fa-chevron-right" aria-hidden="true"></i>
</span>
<span class="cat-title">Education</span>
</div>
<div class="cat-list-body">
<ul id="educationList"></ul>
</div>
</div>
</div>
<div class="footer"></div>
</div>
<script src="data/profile.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>