-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebFrame.html
More file actions
81 lines (79 loc) · 4.08 KB
/
WebFrame.html
File metadata and controls
81 lines (79 loc) · 4.08 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1">
<link rel="stylesheet" type="text/css" media="only screen and (orientation:landscape)" href='public/assets/StyleSheets/myStyle.css' />
<link rel="stylesheet" type="text/css" media="only screen and (orientation:portrait)" href='public/assets/StyleSheets/myStyleSmall.css' />
<link rel="stylesheet" type="text/css" media="only screen and (orientation:landscape) and (max-width:1180px)" href='public/assets/StyleSheets/landscapeMobile.css' />
<script src="https://use.typekit.net/mco6ntv.js"></script>
<script>try{Typekit.load({ async: true });}catch(e){}</script>
<title>Professionals have standards</title>
</head>
<body>
<div class="container">
<div class="header">
<H1 class = "pageHead">PATRICK FLEMING</H1>
</div>
<div class="triContainer">
<div class="bodyTriangle1">
<div class ="triText1">About Me</div>
</div>
<div class="bodyTriangle2">
<div class ="triText2">
Current Work
</div>
</div>
<div class="bodyTriangle3">
<div class ="triText3">
Past Projects
</div>
</div>
<div class="bodyTriangle4">
<div class ="text4Container">
<div class ="triText4">
Contact
</div>
</div>
<div class ="linkContainer">
<a href="mailto:jpf0005@gmail.com" title="Email" class="pageLink">
<img src = "public/assets/Images/emailMark.png" class = "linkImg">
</a>
<a href="https://github.com/Splice09" title="Git Hub" class="pageLink">
<img src = "public/assets/Images/gitHubMark.png" class = "linkImg">
</a>
<a href="https://www.linkedin.com/in/flemingjp" title="Linked In" class="pageLink">
<img src = "public/assets/Images/linkedInMark.png" class = "linkImg">
</a>
</div>
</div>
<div class="aboutMe">
<div class="contentHeader">About Me</div>
<div class="amContent">
<img src="public/assets/Images/suit.jpg" class="myImage">
<p class="summary">Greetings, my name is Patrick Fleming. I graduated from Auburn University with a degree in Software Engineering,
and I love the challenge of programming. In general, I attempt to practice the art of non-zero days.
Outlined in a response to a post on <a class="myLink" href="https://www.reddit.com/r/getdisciplined/comments/1q96b5/i_just_dont_care_about_myself/cdah4af">
Reddit</a>; a non-zero day is performing any action during the day that
moves me closer to my dreams. Examples include: writing at least one line of code, practicing music theory,
reading a book, even exercising. As long as a minimum of one thing gets accomplished, it's a non-zero day.
If you're interested in speaking; contact me. Let's get something done today!</p>
</div>
</div>
<div class="currentWork">
<div class="contentHeader">Current Work</div>
<div class="cwContent"></div>
<div class="numbersBox"></div>
</div>
<div class="pastProjects">
<div class="contentHeader">Past Projects</div>
<div class="ppContent"></div>
</div>
</div>
</div>
<script src="public/assets/Scripts/jquery-1.11.3.js"></script>
<script src="public/assets/Scripts/showTriangles.js"></script>
<script src="public/assets/Scripts/pastProjects.js"></script>
<script src="public/assets/Scripts/currentWork.js"></script>
<script src="public/assets/Scripts/blogClickHandler.js"></script>
</body>
</html>