-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (107 loc) · 3.42 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Nanda vikas</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">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
body {
font: 20px Montserrat, sans-serif;
line-height: 1.8;
color: #f5f6f7;
}
p {font-size: 16px;}
.margin {margin-bottom: 45px;}
.bg-1 {
background-color: #1abc9c; /* Green */
color: #ffffff;
}
.bg-2 {
background-color: #474e5d; /* Dark Blue */
color: #ffffff;
}
.bg-3 {
background-color: #ffffff; /* White */
color: #555555;
}
.bg-4 {
background-color: #2f2f2f; /* Black Gray */
color: #fff;
}
.container-fluid {
padding-top: 70px;
padding-bottom: 70px;
}
.navbar {
padding-top: 15px;
padding-bottom: 15px;
border: 0;
border-radius: 0;
margin-bottom: 0;
font-size: 12px;
letter-spacing: 5px;
}
.navbar-nav li a:hover {
color: #1abc9c !important;
}
footer li{
list-style-type: none;
}
a img{
top:-10px;
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-inverse">
<div class="container">
<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="index.html"><img src="mylogo.png" alt="LOGO" height="40" width="40"></a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">Me</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
</div>
</nav>
<!-- First Container -->
<div class="container-fluid bg-2 text-center">
<h3 class="margin">Who Am I?</h3>
<img src="/projects/img.JPG" class="img-responsive img-circle margin" style="display:inline" alt="man" width="350" height="350">
<h3>I'm a learner</h3>
</div>
<!-- second Container (Grid) -->
<div class="container-fluid bg-3 text-center">
<h1 class="margin">Hi there, I'm Nanda vikas</h1><br>
<div class="row">
<p>I'm an under graduate student of <b><i><font color="red"> JNTUA College of engineering Pulivendla.</font></i></b></p>
<p> I am a kind of guy who aims for things that are very difficult to acheive but tries eventually hard for the next time whenever I fail.<a href="about.html">Read more about my life...</a></p>
<h2><b><i>I believe in the quote</b></i></h2>
<p><font size="+3">Dream big and dare to fail.</font></p>
</div>
</div>
<!-- Footer -->
<footer class="container-fluid bg-4 text-center">
<h1>Contact me</h1>
<ul>
<li><a href="mailto:nandavikas858@gmail.com">Gmail</a></li>
<li><a href="https://github.com/nandavikas">Github</a></li>
<li><a href="https://www.linkedin.com/in/nandavikas/">LinkedIn</a>
</ul>
</footer>
</body>
</html>