-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofilePage2
More file actions
85 lines (75 loc) · 2.65 KB
/
Copy pathprofilePage2
File metadata and controls
85 lines (75 loc) · 2.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Profile Page</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<style>
.navbar {
margin-bottom: 2;
border-radius: 2;
}
footer {
background-color: #8B008B;
padding: 50px;
}
p {
font-size:14px;
font-style:italic;
font-family:sans-serif monospace;
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container-fluid" style="color:#f0f000">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Portfolio</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Project</a></li>
<li><a href="#">Contact</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#"><span class="glyphicon glyphicon-log-in"></span> Login</a></li>
</ul>
</div>
</div>
</nav>
<div class="jumbotron">
<div class="container text-left xs-3">
<img src="/home/shanu/Document/sparkProfilePage/20170302_174621.jpg" alt="">
<h3>My Profile</h3>
<p><span style="font-size:30px">Tech Enthutiast:</span>I code,design,develop <br>
and gather all infomation on technology</p>
</div>
</div>
<div class="container-fluid lg-3 text-center">
<h3>Follow Me on social-media</h3><br>
<div class="container-fluid list-inline-item">
<a href="#"><i class="fa fa-lg fa-facebook-square"></i></a>
<a href="#"><i class="fa fa-lg fa-twitter-square"></i></a>
<a href="#"><i class="fa fa-lg fa-google-plus-square"></i></a>
<a href="#"><i class="fa fa-lg fa-github-square"></i></a>
</div>
</div>
<div>
<footer class="container-fluid text-center">
<p>Designed by Shanu Thobs</p>
</footer>
</div>
</body>
</html>