-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork.html
More file actions
88 lines (88 loc) · 3.53 KB
/
work.html
File metadata and controls
88 lines (88 loc) · 3.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Portfolio | Work</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="font/css/fontello.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Droid+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/jquery.fancybox.css" media="screen">
</head>
<body>
<div class="navbar">
<div class="navbar-inner">
<div class="container"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a> <a class="brand" href="index.html"><img src="img/user.jpg" alt=""></a>
<ul class="nav nav-collapse pull-right">
<li><a href="index.html"><i class="icon-user"></i> Profile</a></li>
<li><a href="skills.html"><i class="icon-trophy"></i> Skills</a></li>
<li><a href="work.html" class="active"><i class="icon-picture"></i> Work</a></li>
<li><a href="resume.html"><i class="icon-doc-text"></i> Resume</a></li>
</ul>
<div class="nav-collapse collapse"></div>
</div>
</div>
</div>
<div class="container work">
<h2>My Work</h2>
<ul class="work-images">
<li><a href="https://github.com/MAYANK123-code" style="color: black;">Github Projects</a></li>
<li><a href="www.xpert.intern" style="color: black;">Xpert intern Projects</a></li>
<li><a href="" style="color: black;">Web development Projects</a></li>
<li><a href="" style="color: black;">Technical Writer Projects</a></li>
</ul>
</div>
<div class="row social">
<ul class="social-icons">
<li><a href="https://www.facebook.com/"><img src="img/fb.png" alt=""></a></li>
<li><a href="#"><img src="img/tw.png" alt=""></a></li>
<li><a href="https://www.google.com/"><img src="img/go.png" alt=""></a></li>
<li><a href="#"><img src="img/pin.png" alt=""></a></li>
</ul>
</div>
<div class="footer">
<div class="container">
<p class="pull-right"><a href="#myModal" role="button" data-toggle="modal"> <i class="icon-mail"></i> CONTACT</a></p>
</div>
</div>
<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel"><i class="icon-mail"></i> Contact Me</h3>
</div>
<div class="modal-body">
<form action="#">
<input type="text" placeholder="Your Name">
<input type="text" placeholder="Your Email">
<input type="text" placeholder="Website (Optional)">
<textarea rows="3" style="width:80%"></textarea>
<br>
<button type="submit" class="btn btn-large"><i class="icon-paper-plane"></i> SUBMIT</button>
</form>
</div>
</div>
<script src="js/jquery-1.10.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script>
$('#myModal').modal('hidden')
</script>
<script src="js/jquery.fancybox.js?v=2.1.5"></script>
<script>
$(document).ready(function () {
$(".fancybox-thumb").fancybox({
helpers: {
title: {
type: 'inside'
},
overlay: {
css: {
'background': 'rgba(1,1,1,0.65)'
}
}
}
});
});
</script>
</body>
</html>