-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (99 loc) · 5.86 KB
/
index.html
File metadata and controls
99 lines (99 loc) · 5.86 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
<html lang="en">
<head>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Playfair+Display" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Hammersmith+One"/>
<link rel="stylesheet" type="text/css" href="index.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="index.js"></script>
<meta property='og:image' content="https://tylerpar99.github.io/Images/cover.png"/>
<meta property="og:image:width" content="1200"/>
<meta property="og:image:height" content="627"/>
<meta property='og:url' content='https://tylerpar99.github.io/'/>
<meta property='og:description' content='Personal Portfolio'/>
<meta property='og:title' content='Portfolio'/>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="landing">
<div class="" style="background-image: url('Images/cover.png');">
<img class="image-fluid" src="Images/codeBG.png">
</div>
</div>
<div class="text-center">
<a href="Images/Tyler PartonResume2022.pdf" target="_blank"><img src="Images/Resume.png" class="border-0" width="75" height="75"class="img-thumbnail" alt="Resume"/></a>
<a href="http://github.com/tylerpar99" target="_blank"><img src="Images/Github.png" class="border-0" width="75" height="75"class="img-thumbnail" alt="Resume"/></a>
<a href="http://www.linkedin.com/in/tylerpar99/" target="_blank"><img src="Images/linkedin.png" class="border-0" width="75" height="75"class="img-thumbnail" alt="Resume"/></a>
<a href="https://opensourceexploration.wordpress.com/" target="_blank"><img src="Images/wordpress.png" class="border-0" width="75" height="75"class="img-thumbnail" alt="Blog"/></a>
</div>
<div class="card mb-3 ps-2 pt-2 imagecontain border-0" style="width: 100%;";>
<div class="row g-0 pt-5">
<div class="col-md-4">
<div>
<img src="Images/partont.png" class="img-fluid rounded mx-auto d-block" alt="About Me">
</div>
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="heading text-center fw-bold">About Me</h5>
<p class="paragraph text-center text-dark">Hardworking and enthusiastic College Student working towards a B.S. in Computer &
Information Science at Berea College. I am experienced with various Programming Languages, development tools,
and procedures. Able to effectively self-manage during independent projects, as well as collaborate
as part of a productive team. Originally a Business major, I quickly switched to Computer Science
after enjoying an introduction to app development course. I got the opportunity to Join the Student
Software Development Team at Berea College, where my love for CS grew. I have since been enjoying web
development and open-source projects. In my free time, I enjoy playing and watching sports of all kinds,
coding, reading, and writing. During a quarantined 2020, I challenged myself to read more which led me
to take various English courses and pursue a minor in English. Feel free to use any of the links
at the top of the home page to visit my LinkedIn, Github, Resume, or wordpress. The wordpress links to a blog
that I created as a part of my journey in Open-source software development.</p>
</div>
</div >
</div>
</div>
</div>
<div class="ps-3 pe-3 pb-3">
<h5 class="heading text-center fw-bold">My Work:</h5>
<div class="row row-cols-1 row-cols-md-2 g-4">
<div class="col">
<div class="card h-100">
<img src="Images/SSDT.png" class="card-img-top" alt="Student Software Development Team">
<div class="card-body">
<h5 class="card-title">Student Software Development Team</h5>
<p class="card-text">As a memeber of the Student Software Development
Team at Berea College I have worked with my team to build a website
for one of the organizations on our campus to assist them in their dailey
operations, as a member of the team I was able to learn Full Stack Web Development
and various developmental techniques.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="Images/cover.png" class="card-img-top" alt="Portfolio">
<div class="card-body">
<h5 class="card-title">Personal Website</h5>
<p class="card-text">My personal website host my portfolio and various links where you can find my Resume as well as my LinkedIn and Github profile.</p>
<a href="http://github.com/tylerpar99/tylerpar99.github.io">Source Code</a>
</div>
</div>
</div>
</div>
</div>
<div class="text-center nongradient">
<h3 class="text-center heading">Contact Me:</h3>
<div class="pt-1 border-0 text-light">
<input type="text" class="col-md-6 gradient" placeholder="Name" id="name" aria-label="First name">
</div>
<div class="pt-1 border-0 text-light">
<input type="text" id="subject" placeholder="Subject" class="col-md-6 gradient" aria-label="Sizing example input" aria-describedby="inputGroup-sizing-default">
</div>
<div class="pt-1 border-0 text-light">
<textarea class="col-md-6 gradient" id="message" placeholder="Message" rows="8"></textarea>
</div>
<div class="pt-2 pb-2"><button class="btn gradient pt-2" id="submit" onclick="contactMe()">Send</button></div>
</div>
</body>
</html>