-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (92 loc) · 3.66 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Phillip de Sousa</title>
<link rel="stylesheet" href="baseStyle.css">
<link href="https://fonts.googleapis.com/css?family=Rokkitt" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"></script>
</head>
<body>
<div class="main">
<div class="title accent full-span">
<h1>Phillip's Projects</h1>
</div>
<div class="navigator full-span" style="background-color: grey;"></div>
<div class="content">
<h2>Public Repos</h2>
<p>These are some repos that I have worked on: </p>
<div class="grid">
<div class="grid-wrapper">
<div class="card">
<div class="card-body">
<h5 class="card-title">PKRental Team</h5>
<p class="card-text">A C# program use to extract Pokemon team data from a Global Link rental
team code, and export to Pokemon Showdown team format to be used with the simulator.</p>
<a href="https://github.com/Phil-DS/PKRentalViewer"><button
class="btn btn-primary">PKRentalViewer</button></a>
</div>
</div>
</div>
<div class="grid-wrapper">
<div class="card">
<div class="card-body">
<h5 class="card-title">Candy Calc</h5>
<p class="card-text">A small calculator to know what XP Candies to feed my Pokemon to reach a
specific level (To reduce waste)</p>
<a href="./CandyCalc/index.html"><button class="btn btn-primary">Candy Calc</button></a>
</div>
</div>
</div>
<!-- <div class="row row-cols-1 row-cols-md-3 g-4">
<div class="col">
<div class="card">
<div class="card-body">
<h5 class="card-title">PKRental Team</h5>
<p class="card-text">A C# program use to extract Pokemon team data from a Global Link rental team code, and export to Pokemon Showdown team format to be used with the simulator.</p>
<a href="https://github.com/Phil-DS/PKRentalViewer"><button class="btn btn-primary">PKRentalViewer</button></a>
</div>
</div>
</div>
</div> -->
</div>
</div>
<div class="about-me">
<div class="card">
<div class="card-body">
<img class="card-img-top" src="https://github.com/Phil-DS.png" alt="Phil-DS Avatar"
style="max-height: 150px;">
<h5 class="card-title">About Me</h5>
<p class="card-text">My name is Phillip de Sousa, a graduate programmer hailing from North West
England.</p>
<a href="https://github.com/Phil-DS" class="card-link">GitHub</a>
</div>
</div>
</div>
<div class="footer accent full-span">
</div>
</div>
<!-- </br>
<h2>About Me</h2>
<div>
My name is Phillip de Sousa, a graduate programmer hailing from North West England.<br>
</div>
<h2>Public Repos</h2>
<p>These are some repos that I have worked on: </p>
<div class="row row-cols-1 row-cols-md-3 g-4">
<div class="col">
<div class="card">
<div class="card-body">
<h5 class="card-title">PKRental Team</h5>
<p class="card-text">A C# program use to extract Pokemon team data from a Global Link rental team code, and export to Pokemon Showdown team format to be used with the simulator.</p>
<a href="https://github.com/Phil-DS/PKRentalViewer"><button class="btn btn-primary">PKRentalViewer</button></a>
</div>
</div>
</div>
</div> -->
</body>
</html>