-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.php
55 lines (39 loc) · 1.33 KB
/
portfolio.php
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
<!doctype html>
<html lang="en-us">
<head>
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio | Your Name</title>
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<?php require "include/header.php" ?>
<div id="main-container" class="container">
<section class="main-section">
<h1>Portfolio</h1>
<div class="work">
<img src="assets/images/technics-q-c-640-480-1.jpg" alt="hangman">
<h3>Hangman</h3>
</div>
<div class="work">
<img src="assets/images/technics-q-c-640-480-2.jpg" alt="RPG Game">
<h3>RPG Game</h3>
</div>
<div class="work">
<img src="assets/images/technics-q-c-640-480-5.jpg" alt="Trivia Game">
<h3>Trivia Game</h3>
</div>
<div class="work">
<img src="assets/images/technics-q-c-640-480-7.jpg" alt="Rutgers Info Widget">
<h3>Rutgers Info Widget</h3>
</div>
<div class="work">
<img src="assets/images/technics-q-c-640-480-9.jpg" alt="Rock Paper Scissors">
<h3>Rock Paper Scissors</h3>
</div>
</section>
<?php require "include/sidebar.php" ?>
</div>
<?php require "include/footer.php" ?>
</body>
</html>