-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.htm
More file actions
149 lines (127 loc) · 5.26 KB
/
index.htm
File metadata and controls
149 lines (127 loc) · 5.26 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>steven Kane portfolio</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./assets/styles.css">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light" aria-label="Main navigation">
<a class="navbar-brand fw-bold" href="#">Steven Kane</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#gallery">Gallery</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
<main class="container-xl">
<section class="text-center my-5">
<h1 class="display-4 fw-bold">Steven Kane</h1>
<p class="lead mt-3">
I am learning to be a full stack developer. This is my first portfolio project using Bootstrap.
this is my first web page exercise for my
portfolio i am excited to learn more and more about web development and
become a web developer one day. i love coding and i love to learn new things my
aim is to understand how things work and be able to help others with their websites
and help them with their coding problems. i am looking forward to learning more about
web development and to be able to be able to be fully able to support my family with
my new skills and knowledge. Starting a new career in web development is exciting and i am
looking forward to the journey ahead.
</p>
</section>
<section id="about" class="mb-5">
<h2 class="mb-3">About Me</h2>
<p>
My name is Steven kane i am 34 years old i live in belfast northern ireland
i have a wife and two children i have a dog called max and a cat called tommy
i love to play football and i love to watch football my favorite team is manchester united
i also love woodworking and i love to build things with my hands
i have a workshop in my garage where i build things with wood and i love to create
things on my lathe.
</p>
</section>
<section id="gallery" class="mb-5">
<h3 class="mb-4">Gallery</h3>
<div class="container">
<div class="row g-3">
<div class="col-12 col-sm-6 col-lg-4">
<img src="./assets/me.JPG" class="img-fluid rounded" alt="Picture of Steven">
</div>
<div class="col-12 col-sm-6 col-lg-4">
<img src="./assets/me2.jpg" class="img-fluid rounded" alt="Picture of Steven">
</div>
<div class="col-12 col-sm-6 col-lg-4">
<img src="./assets/me3.jpg" class="img-fluid rounded" alt="Picture of Steven">
</div>
<div class="col-12 col-sm-6 col-lg-4">
<img src="./assets/me4.jpg" class="img-fluid rounded" alt="Picture of Steven">
</div>
<div class="col-12 col-sm-6 col-lg-4">
<img src="./assets/me5.jpg" class="img-fluid rounded" alt="Picture of Steven">
</div>
<div class="col-12 col-sm-6 col-lg-4">
<img src="./assets/me6.jpg" class="img-fluid rounded" alt="Picture of Steven">
</div>
</div>
</div>
<a href="#" class="btn btn-danger mt-4" target="_blank">
My Favorite Website
</a>
</section>
<section class="mb-5">
<h2 class="mb-3">My Skills</h2>
<ul class="list-group list-group-flush w-50">
<li class="list-group-item">HTML</li>
<li class="list-group-item">CSS</li>
<li class="list-group-item">Bootstrap</li>
<li class="list-group-item">JavaScript (TBC)</li>
<li class="list-group-item">React (TBC)</li>
</ul>
</section>
<section id="contact" class="mb-5">
<h2 class="mb-3">Contact Me</h2>
<form class="w-50">
<div class="mb-3">
<label for="name" class="form-label">Name</label>
<input type="text" class="form-control" id="name" required>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" id="email" required>
</div>
<div class="mb-3">
<label for="message" class="form-label">Message</label>
<textarea class="form-control" id="message" rows="4"></textarea>
</div>
<button type="submit" class="btn btn-success me-2">Submit</button>
<button type="reset" class="btn btn-danger">Reset</button>
</form>
</section>
</main>
</body>
<footer class="bg-dark text-light text-center py-3">
<p class="mb-0">© 2025 Steven Kane</p>
</footer>
</html>