-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject_xp.html
68 lines (61 loc) · 2.98 KB
/
project_xp.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
<!DOCTYPE HTML>
<!--
page displaying projects and experience related to computer engineering
rakesh pillai | [email protected]
-->
<html>
<head>
<title> Projects and Experience </title>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet" href="assets/css/mystylesheet.css" />
<noscript>
<link rel="stylesheet" href="assets/css/noscript.css" />
</noscript>
<link rel="canonical" href="https://getbootstrap.com/docs/5.1/examples/navbars/">
<!-- Bootstrap core CSS -->
<link href="/assets/css/bootstrap/assets/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- more bootstrap -->
<link href="assets/css/bootstrap/navbars/navbar.css" rel="stylesheet">
</head>
<body class="" style="background-color: white">
<nav class="navbar navbar-expand-lg navbar-light bg-light rounded">
<div class="container-fluid">
<div class="collapse navbar-collapse justify-content-md-center" id="navbarsExample10">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="./index.html">Resume</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="">Projects and Experience</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./about_me.html">About Me</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="px-4 pt-2 my-5 text-center border-bottom">
<h1 class="display fw-bold">Pokécounter</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4"> Pokécounter is a django-based website. The objective of the site is to provide users with counters for a given pokémon. I created this site for personal use and to learn how to use django. This project taught me how to use django template filters, the basics of CSS, HTML, and Javacsript, the basics of Python, and more. </p>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center mb-5">
<button type="button" class="btn btn-lg px-4 me-sm-3" onclick="window.open('https://github.com/rxkesh/pokecounter','_blank')">Source Code</button>
</div>
</div>
<div class="overflow-hidden" style="max-height: 30vh;">
<div class="container px-5">
<img src="images/pokecounter_screenshot.PNG" class="img-fluid border rounded-3 shadow-lg mb-4" width="700" height="500" loading="lazy">
</div>
</div>
</div>
<div class="b-example-divider"></div>
<div class="px-4 pt-5 my-5 text-center border-bottom">
<h1 class="display fw-bold">More projects on the way!</h1>
<div class="overflow-hidden" style="max-height: 30vh;">
</div>
</div>
</body>
</html>