-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpresentation.html
121 lines (116 loc) · 3.68 KB
/
presentation.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- added buttons -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.btn {
border: none;
background-color: inherit;
padding: 28px 56px;
font-size: 24px;
cursor: pointer;
display: inline-block;
}
.btn:hover {background: #eee;}
.success {color: green;}
.info {color: dodgerblue;}
.warning {color: orange;}
.danger {color: red;}
.default {color: black;}
</style>
<body>
<title>Home Page</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<style>
.fakeimg {
height: 150px;
width: fit-content;
background: #aaa;
}
</style>
</head>
<body>
<div class="p-3 bg-primary text-white text-center">
<h3>Dragos-Gabriel Danciulescu - Online Portfolio</h3>
<p>Feel free to look around!</p>
</div>
<!-- up navbar -->
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<div class="container-fluid">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" href="presentation.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="education.html">Education</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="projects.html">Personal Projects</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="volunteering.html">Volunteering</a>
</li>
</ul>
</div>
</nav>
<div class="container mt-5">
<div class="row">
<div class="col-sm-4">
<h2>About Me</h2>
<!-- left navbar -->
<h2 class="mt-4">Links to jump around</h2>
<ul class="nav nav-pills flex-column">
<li class="nav-item">
<a class="nav-link" href="presentation.html">
<button class="btn default">Home</button>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="education.html">
<button class="btn default">Education</button>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">
<button class="btn default">Personal Projects</button>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="volunteering.html">
<button class="btn default">Volunteering</button>
</a>
</li>
</ul>
<hr class="d-sm-none" />
</div>
<div class="col-sm-8">
<h2>Summary</h2>
<h5>
Hello, my name is Dragos-Gabriel Danciulescu. I'm currently studying
computing-science and wish to become a
Software Engineer. This website represents my online portfolio.
</h5>
<h2 class="mt-5">Website description</h2>
<h5>
<br>
I created this website as a personal project to get more aquainted
with Web Development.
</h5>
</div>
</div>
</div>
<div class="my-5 p-3 bg-dark text-white text-center">
<p>
This website represents a personal project, it is not to be published
online, only as a project on git.
<p>
</div>
</body>
</html>