forked from hstatsep/portfolio-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
133 lines (116 loc) · 5.98 KB
/
Copy pathindex.html
File metadata and controls
133 lines (116 loc) · 5.98 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<title class="owner-name">#</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/prismjs@1.29.0/themes/prism.css" rel="stylesheet" />
<link rel="stylesheet" href="style.css" type="text/css">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand owner-name" href="#"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#" id="github" target="_blank">Github</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects">Projects</a>
</li>
</ul>
</div>
</nav>
<!-- First Container -->
<div class="container-fluid bg-1 text-center">
<!--<h1 class="margin">Name</h1>-->
<img src="img/logo.png" class="img-fluid" alt="Logo" id="logo">
</div>
<!-- Second Container -->
<div class="container-fluid bg-2 text-center" id="projects">
<h3 class="margin">Projects</h3>
<p>Coming soon!</p>
<div class="container">
<div class="row">
<div class="col-sm-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">SEP 10 Freedom Project</h5>
<h6 class="card-subtitle mb-2 text-muted">10th Grade</h6>
<p class="card-text">The Freedom project is a year long project where I combined all the skills that I learned throughout the year to create a project about sports technology showing both my research and future innovations in the field of sports.</p>
<a href="projects/sep10-fp.html" class="card-link">More</a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">CYOA Project</h5>
<h6 class="card-subtitle mb-2 text-muted">10th Grade</h6>
<p class="card-text">In this project I worked with my partner Tina to create a fun adventure about time traveling using git commands.</p>
<a href="projects/cyoa.html" class="card-link">More</a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Movie Webpage Project</h5>
<h6 class="card-subtitle mb-2 text-muted">10th Grade</h6>
<p class="card-text">In this project we used our understanding of coding to create a basic webpage for a movie trailer that we created.</p>
<a href="projects/movie-webpage.html" class="card-link">More</a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card">
<div class="card-body">
<h5 class="card-title"> SEP 11 Freedom Project</h5>
<h6 class="card-subtitle mb-2 text-muted">11th Grade</h6>
<p class="card-text">In this year long project I used kaboom to create a game with the nostolgic feeling of childhood from cartoons.</p>
<a href="projects/sep11-fp.html" class="card-link">More</a>
</div>
</div>
</div>
</div>
</div>
</a>
</div>
<!-- Third Container (Grid) -->
<div class="container-fluid bg-3 text-center">
<h3 class="margin">About Me</h3><br>
<div class="row">
<div class="col-sm-4">
<p>I love playing sports</p>
</div>
<div class="col-sm-4">
<p>Taking walks</p>
</div>
<div class="col-sm-4">
<p>I enjoy sleeping</p>
</div>
</div>
</div>
<!-- Footer -->
<footer class="container-fluid bg-4 text-center">
<a href="#" target="_blank" id="fork"><img src="img/fork.png"></a><br>
<a href="https://hstatsep.github.io" target="_blank"><img src="https://hstatsep.github.io/img/hstatsep-logo-small.png" id="sep"></a>
</footer>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.29.0/components/prism-core.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.29.0/plugins/autoloader/prism-autoloader.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.29.0/plugins/normalize-whitespace/prism-normalize-whitespace.min.js"></script>
<script src="script.js"></script>
</body>
</html>