-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoals.html
122 lines (120 loc) · 5.06 KB
/
goals.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
<!doctype html>
<html>
<head>
<title>Nishant Chintala | Goals</title>
<link rel ="stylesheet" type = "text/css" href = "style.css">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Merriweather|Playfair+Display&display=swap" rel="stylesheet">
<script src = "scripts.js"></script>
<link rel="icon" href = "/images/logo.png">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
</head>
<body>
<nav class="navbar sticky-top navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand color-change"
style="font-size:2rem;" href="index.html">Nishant Chintala</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link color-change" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link color-change" href="aboutme.html">About Me</a>
</li>
<li class="nav-item">
<a class="nav-link color-change" href="experiences.html">Experiences</a>
</li>
<li class="nav-item active">
<a class="nav-link color-change" href="goals.html">Goals</a>
</li>
<li class="nav-item">
<a class="nav-link color-change" href="contact.html">Contact</a>
</li>
</ul>
<span class="navbar-text">
<a href="index.html">
<img src="/images/logov2.png" style = "width:50px; height:auto;">
</a>
</span>
</div>
</nav>
<div class="card bg-light text-white">
<img class="card-img" src="images/mtcookbridge.JPG" style="width:100%;" alt="Card image">
<div class="jumbotron jumbotron-fluid card-img-overlay container" id="goalsjumbo">
<div class="container">
<h1 class="display-4">Goals give us purpose and direction.</h1>
<p class="lead">
Sometimes to get from point A to point B, you'll have a bridge like
the one above. Other times, you won't. That's where goals come in.
Goals help us plan our lives. I envision my goals by writing them on
my white board on my desk. I see them everyday, and they serve as a
reminder to constantly put my best foot forward and excel.
</p>
</div>
</div>
</div>
<br/>
<br/>
<br/>
<div class="card mb-3 container">
<img class="card-img-top" src="images/abstractpainting.jpg" alt="Card image cap">
<div data-aos="fade-left" class="card-body">
<h5 class="card-title">Be Creative</h5>
<p class="card-text">
As Steve Jobs once said, "Innovation distinguishes between a leader and
a follower." I live by this quote, constantly trying to think of new
ingenious ideas as simple as a fidget spinner coffee-stirrer or as
complex as a startup idea to deploy a new, more efficient platform for
nonprofits to connect with volunteers. Only with creativity will there
be change and growth.
</p>
</div>
</div>
<br/>
<br/>
<br/>
<div class="card mb-3 container">
<img class="card-img-top" src="images/zealandboats.jpeg" alt="Card image cap">
<div data-aos="fade-left" class="card-body">
<h5 class="card-title">Be Passionate</h5>
<p class="card-text">
Whoever said the moon landing was going to be a piece of cake?
Every and any great accomplishment never came about without a
burning passion to accomplish a goal. My passion is what keeps
me motivated to succeed regardless of any obstacles in my path.
Ultimately, my passion is what will determine who I am and what
I will achieve.
</p>
</div>
</div>
<br/>
<br/>
<br/>
<div class="card mb-3 container">
<img class="card-img-top" src="images/nightsky.jpg" alt="Card image cap">
<div data-aos="fade-left" class="card-body">
<h5 class="card-title">Be Open</h5>
<p class="card-text">
I would have never thought in a million years that I would win
an intramural ultimate frisbee championship. Nor did I think
that I'd find myself at a Hackathon at Princeton, guzzling down
Red Bull as I code through all hours of the night. But my open
attitude and willingness to try new things allowed me to see my
new passions. In continuing to maintain this open attitude, not
only will I try new things, but I will also meet new people, go
to new places, and discover the nuances that allow me to enjoy life.
</p>
</div>
</div>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>