-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
90 lines (84 loc) · 3.34 KB
/
about.html
File metadata and controls
90 lines (84 loc) · 3.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, shrink-to-fit= no"
/>
<title>Matt Mack Web Development</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body >
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a href="index.html" class="navbar-brand" >Matt Mack Web Development</a> <button type="button" class="navbar-toggler" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbar">
<ul class="nav navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">HOME <span class="sr-only"></span></a>
</li>
<li class="nav-item">
<a class="nav-link active" href="about.html">ABOUT</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">CONTACT</a>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-bs-toggle="dropdown">Portfolio <span class="caret"></span>
</a>
<div class="dropdown-menu">
<a href="https://htmlmonger.github.io/DnDGenerator/" class="dropdown-item">DnD Character Generator</a>
<a href="https://htmlmonger.github.io/Fishing/" class="dropdown-item">Aberdeen Fishing</a>
</div>
</li>
</ul>
</div>
</div>
</nav>
<!-- Page Content -->
<div class="container horizontal-center vertical-center">
<div class="row vertical-center">
<div class=" vertical-center mt-0 pt-0 img-container">
<img class="img-fluid rounded-circle pt-0 vertical-center" src="img/pfp.jpg" alt="" >
</div>
<div class="horizonal-center pt-4">
<h3 class="">Matt Mack</h3>
<p>
<h5 class="about-text">
I am an Edinburgh based self motivated Front-end web developer creating intuitive and visually appealling websites.
</h5>
</p>
<p>
<h5 class="about-text">
Proficient in HTML5, CSS3 and Javascript ES6, with experience in responsive design and cross-browser compatibility.
</h5>
</p>
<p>
<h5 class="about-text">
With full commitement to staying up-to-date with the latest web development trends and techniques.
</h5>
</p>
</h5>
</div>
</div>
<script
src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"
integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.min.js"
integrity="sha384-IDwe1+LCz02ROU9k972gdyvl+AESN10+x7tBKgc9I5HFtuNz0wWnPclzo6p9vxnk" crossorigin="anonymous"
></script>
</body>
</html>