-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
117 lines (104 loc) · 5.54 KB
/
blog.html
File metadata and controls
117 lines (104 loc) · 5.54 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
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
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="style.css">
<title>Intro Post</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- load Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script> -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</head>
<body>
<header>
<img src="you_got_this.jpeg" height="300" alt="You got this inspiration Quote ">
<h1>Get Into Tech</h1>
<ul id="posts">
<li><a href="blog.html">Intro Post</a></li>
<li><a href="second_post.html">What To Expect</a></li>
<li><a href="about_me_post.html">About Me</a></li>
</ul>
</header>
<article>
<h2 id="intro_post">Intro Post</h2>
<p>Are you starting out your career in tech? Or maybe you have been interested for a long time and are thinking
of making the pivot?
I would assimilate getting into tech as getting better at basketball, now let me tell you what I mean by
that.
</p>
<p> With minimal equipment, you can practice the sport and over time improve your game (all you need is a ball
and a makeshift hoop). < -- This is how I started 😅 With the proper motivation you can continuously get
better at basketball and this doesn’t require anything fancy or a huge investment. </p> <p>
Likewise, getting your foot in the door in the field of technology is very much similar. With minimal
overhead, you can learn and practice your technical skills,
all you need is a laptop and drive (see what I did there)
Someone who is willing to put in the time and the effort behind the keyboard is very much able to land a
career in tech.
And that's the thing about this field, it requires self-motivation a lot more than formal training
</p>
<p>And here's a great quote from Pinterest on
<a href="https://www.pinterest.com/pin/746893919450504035/">“Making it happen”</a>
<img id="create" src="create_opportunity.jpg" alt="Create Opprotunity Quote">
</p>
<p>
Much like someone looking to improve their skills
in the basketball example; they could dribble over and over, they can practice their shot over and over,
until they see the strides being made. But this is where the difference maker comes into play, without a
doubt once they play in pickup games with other players they will see their playing level go up that much
more. The added skill sets and necessary adjustments to be made on their part, will enable this player to
improve.
</p>
<table>
<thead>
<tr>
<th>Skills Required to be successful in Tech</th>
</tr>
</thead>
<tbody>
<tr>
<td>Persistence</td>
<td>General Curiosity</td>
<br />
<td>Flexibility</td>
<td>General Computer Fundamentals</td>
</tr>
</tbody>
</table>
<p>The same goes in the field of tech. You can definitely self-teach a lot and rinse and repeat,
but the strides are made when you speak with others in the field and get involved in the community. I can
attest to this, and it is great to know that there are folks who want to see you succeed.
</p>
<p>
And that is why I started this website, to help others that want to get into the field of tech and those
that are early in their careers with some doubts learn more.
</p>
<button>Like</button>
</article>
<article>
<h2><a href="second_post.html">What to Expect From These Posts</a></h2>
<!-- <p><a href="second_post.html">What to Expect</a> -->
</p>
</article>
<article>
<h2><a href="about_me_post.html">About Me</a></h2>
</article>
<article>
<h3>Please take this survey so we know how to better help</h3>
<form id="form" method="POST"></form>
<p>Sign Up To Stay Up to Date</p>
<label for="email"> Email:</label>
<input type="text" id="email" name="email">
<label for="options"> Weekly:</label>
<input type="radio" id="weekly" name="options">
<label for="options"> Bi-weekly:</label>
<input type="radio" id="Bi-weekly" name="options">
<br />
<br />
<input type="submit" value="Sign Up!">
</article>
</body>
</html>