-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (44 loc) · 2.08 KB
/
Copy pathindex.html
File metadata and controls
52 lines (44 loc) · 2.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
<!DOCTYPE html>
<html>
<head>
<title>Chad Mc Adams Profile Home</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 active" aria-current="page" href="#">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" href="portfolio.html">Portfolio</a>
</li>
</ul>
</header>
</div>
<div class="centerDiv">
<h1>Chad Mc Adams Home Page</h1>
<h2 id="best">Welcome!</h2>
</div>
<div class="centerDiv">
<p>Click <a href="Resume.pdf">here</a> to go to the Resume page or <a href="Resume.docx">here</a> to download the docx version.</p>
<p><a href="game.html">Click here to go to the game.</a></p>
<p><a href="portfolio.html">Click here to go to Chad's Portfolio.</a></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>