-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.html
195 lines (159 loc) · 5.77 KB
/
project.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Profile</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap Css -->
<link href="css/bootstrap.min.css" id="bootstrap-style" rel="stylesheet" type="text/css" />
<style>
.one {
z-index: 1;
position: absolute;
top: 0;
margin-top: 230px;
margin-left: 315px;
font-family: "Verdana";
}
.two {
position: relative;
}
.first {
position: absolute;
top: 0;
margin-top: 230px;
margin-left: 65px;
font-family: "Verdana";
}
.fsmall {
width: 28%;
}
.nav-tabs .nav-link.active {
border-right: none !important;
}
.text-primary {
color: #0082F3;
}
.img-width {
width: 90%;
}
.base-line {
position: relative;
}
.base-line span {
background-color: white;
padding-right: 10px;
}
.base-line:after {
content: "";
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 0.5em;
border-top: 1px solid #efefef;
z-index: -1;
}
.mt-view-n4 {
margin-top: 0;
}
.badge-soft-primary {
background-color: #E3F2FD;
color: #0082F3;
}
.vertical-super {
vertical-align: super;
}
.card-header {
background-color: white;
}
.border-content-right {
border-right: 1px solid #eff2f7;
}
.ffont {
font-size: 15px;
}
@media(min-width: 1200px) {
.mt-view-n4 {
margin-top: -1.5rem;
}
}
@media(max-width: 991.98px) {
.img-width {
width: 33%;
border-radius: 50% !important;
}
.username {
display: none;
}
.details-user {
text-align: center;
}
.vertical-super {
display: block;
margin-top: 0.8rem;
margin-bottom: 1rem;
}
.border-content-right {
border-right: none;
}
}
</style>
</head>
<body data-sidebar="dark">
<section class="mt-0 two">
<img src="https://images.unsplash.com/photo-1550645612-83f5d594b671?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60" width="1366" height="430" align="center">
</section>
<section id="contact">
<div class="row">
<div class="col-lg-3 first">
<div class="card shadow ml-2" style="width: 13rem;">
<ul class="list-group list-group-flush">
<li class="list-group-item rounded text-primary"><a href="index.html"><b>About</b></a></li>
<li class="list-group-item text-primary"><a href="contact.html"><b>Contact Information</b></a></li>
<li class="list-group-item text-primary"><a href="education.html"><b>Education Details</b></a></li>
<li class="list-group-item text-primary border-primary"><a href="technical.html"><b>Technical Skills</b></a></li>
<li class="list-group-item text-primary bg-light border-primary"><a href="project.html"><b>Project Works</b></a></li>
<li class="list-group-item rounded text-primary"><a href="work.html"><b>Work Experience</b></a></li>
</ul>
</div>
</div>
<div class="col-lg-9 one">
<div class="card shadow rounded" style="width: 60rem;">
<div class="card-body text-center">
<h1 align="left" class="text-primary mt-2 ml-4">Project Works</h1><br>
<hr>
<form class="ml-2" action="work.html">
<div class="mt-4" align="left">
<label><h4>Project Work Links</h4></label>
<input type="email" class="form-control ffont" placeholder="https://xyz.com">
</div>
<button class="btn btn-lg mt-2 mb-3 rounded bg-success text-white mr-4 float-right">+</button><br>
<button class="btn btn-lg mt-4 mb-3 rounded bg-dark text-white mr-4">Cancel</button>
<button class="btn btn-lg mt-4 mb-3 rounded bg-primary text-white">Save</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- End Page-content -->
<!--- <footer class="footer bg-light" style="left: 0px;">
<div class="container-fluid">
<div class="row">
<div class="col-sm-6">--->
<!-- <script>document.write(new Date().getFullYear())</script> © IncubateIND. -->
<!--- </div>
<div class="col-sm-6">
<div class="text-sm-right d-none d-sm-block">
<script>
document.write(new Date().getFullYear())
</script> © IncubateIND.
</div>
</div>
</div>
</div>
</footer>---->
<!-- end main content-->
</body>
</html>