-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
125 lines (121 loc) · 4 KB
/
about.html
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
<!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" />
<meta
name="description"
content="About Victoria Bruno, front-end developer and graphic designer based in Amstedam."
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="/style.css" />
<link
href="https://fonts.googleapis.com/css?family=Poppins"
rel="stylesheet"
/>
<title>About Victoria Bruno</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="/index.html">Victoria Bruno</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-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 me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a
class="nav-link"
aria-current="page"
href="/index.html"
title="Homepage"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link active" href="/about.html" title="About"
>About</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="/work.html" title="Work">Work</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/contact.html" title="Contact"
>Contact</a
>
</li>
</ul>
</div>
</div>
</nav>
<div class="container intro-section about-section ps-5 pe-5">
<div class="row">
<div class="col-md-6">
<h1>Victoria Bruno</h1>
<h2>Front-end developer based in Amsterdam</h2>
<p>
Millennial, creative, curious - extremely curious - so I am
constantly trying out things. This brought me to create this space
to share my web development and graphic design projects.
</p>
<div class="navigation-link mt-5">
<a href="/work.html" class="primary-link">View Projects</a>
</div>
</div>
<div class="col-md-6 mt-5 mb-5">
<img
src="/media/vbruno.png"
alt="Portrait"
class="img-fluid rounded"
/>
</div>
</div>
</div>
<footer>
<div class="container mt-5">
<div class="row darker pt-5 pb-5">
<div class="col-sm-6">
<h2>Work Enquiry</h2>
<p>Let’s work together and i’ll help you by all my best</p>
</div>
<div class="col-sm-6">
<div class="pt-5 pb-5 text-center">
<a href="" class="primary-link" title="Contact"
>Let's talk here</a
>
</div>
</div>
</div>
</div>
</footer>
<p class="custom-footer p-5">
🙋🏻♀️ This website was coded by Victoria Bruno and it is
<a
href="https://github.com/ivicta/portfolio-project"
title="GitHub portfolio-project"
>open-sourced</a
>
</p>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"
></script>
</body>
</html>