-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 1.09 KB
/
index.html
File metadata and controls
45 lines (45 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<title>Index</title>
<style>
.img-container {
text-align: center;
}
.img {
border-radius: 8px;
border: 1px solid #ddd;
}
.img2 {
border-radius: 8px;
}
.headers {
text-align: center
}
p {
text-align: center
}
body {
font-family: cursive;
color:white;
background-image: url("background.jpg");
background-color:white;
}
</style>
</head>
<body>
<h1 class = "headers">Alin Nicolae Rondleanu</h1>
<div class="img-container">
<img class="img" src="me.jpg" width="300" height="400">
</div>
<h2 class = "headers">About</h2>
<p>Student studying at <a href = "https://www.itcarlow.ie/">Institute of Technology, Carlow</a>. Currently studying first year of Video Game Development.</p>
<p>24 years old, originally from Romania. Fluent in English and Romanian. </p>
<h2 class = "headers">Contact</h2>
<div class="img-container">
<a href = "https://www.facebook.com/alan.rondo.5/"> <img class="img2" src="facebook.jpg" width="50" height="50"></a>
</div>
<p>Personal Email: archillios@gmail.com </p>
<p>College Email: C00207239@itcarlow.ie </p>
</body>
</html>