-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
65 lines (54 loc) · 2.48 KB
/
Copy pathportfolio.html
File metadata and controls
65 lines (54 loc) · 2.48 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
<!DOCTYPE html>
<html>
<head>
<title>Chad Mc Adams Portfolio</title>
<link rel="icon" href="chadFavicon.jpg">
<link rel="stylesheet" type="text/css" href="css/site.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
</head>
<body>
<div class="container">
<header class="d-flex justify-content-center py-3">
<ul class="nav nav-pills">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button" aria-expanded="false">Resumes</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="resumePDF.html">PDF</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="Resume.docx">DOCX</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="game.html">Game</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Portfolio</a>
</li>
</ul>
</header>
</div>
<div class="centerDiv">
<h1>My Work</h1>
<h2 id="best">Welcome!</h2>
<h3>Click <a href="https://github.com/chadthecoder/">here</a> to go to my GitHub.</h3>
<h3>The link to my GitHub is https://github.com/chadthecoder/.</h3>
<br><br><br><br><br><br>
<h2>Two player Ping Pong (Linux Debian tested)!</h2>
<video width="600" height="500" controls>
<source src="vids/portfolioPong.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<br><br><br>
<h2>Graphics project with openGL (Linux Debian tested).</h2>
<video width="600" height="500" controls>
<source src="vids/portfolioGraphics.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<!-- <p><img href="img.png"></img></p> -->
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
</body>
</html>