-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
66 lines (60 loc) · 2.89 KB
/
portfolio.html
File metadata and controls
66 lines (60 loc) · 2.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SD Portfolio</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Righteous&family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-3">Selwyn Davenport</h1>
<p class="lead">This is where you learn all about me </p>
</div>
</header>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">Contents</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">About </a>
</li>
<li class="nav-item active">
<a class="nav-link" href="portfolio.html">Portfolio<span class="sr-only">(current)</span></a>
</li>
<li class="nav-iten">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
<article class="row line1">
<div class="col-2 item1"></div>
<div class="card" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title">Code Refactor</h5>
<h6 class="card-subtitle mb-2 text-muted">First Assignment</h6>
<img src="Images/codeorg2019_social.png" alt="" width="250" height="200" class="rounded">
<button type="button" class="btn btn-light"><a href="https://redvcted.github.io/Code-Refactor/" class="card-link">Link</a></button>
</div>
</div>
</div>
<div class="col-2 item2"></div>
<div class="card" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title">Alt Portfolio</h5>
<h6 class="card-subtitle mb-2 text-muted">First Attempt</h6>
<img src="Images/Best-Code-and-Text-Editors.png" alt="" width="250" height="200" class="rounded">
<button type="button" class="btn btn-light"><a href="https://redvcted.github.io/My-Website/" >Link</a></button>
</div>
</div>
</div>
</article>
</body>
</html>