-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (100 loc) · 3.45 KB
/
index.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
<!DOCTYPE html>
<html>
<title>leinadjmc</title>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="theme.css" type="text/css">
<style>
img.round
{
border-radius: 50%;
}
.center
{
display: block;
margin-left: auto;
margin-right: auto;
}
h3
{
letter-spacing: 5px;
text-transform: uppercase;
font: 40px "Lato", sans-serif;
color: white;
}
p.sans-serif
{
letter-spacing: 2.5px;
text-transform: lowercase;
font: 30px "Lato", sans-serif;
color: #111;
}
.parallax
{
/* The image used */
background-image: url("https://i.imgur.com/TzAHVBF.png");
/* Set a specific height */
min-height: 600px;
/* Create the parallax scrolling effect */
background-attachment: absolute;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
paralax_{
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.column {
float: left;
width: 33.33%;
padding: 5px;
}
/* Clear floats after image containers */
.row::after {
content: "";
clear: both;
display: table;
}
a
{
color: #111;
text-decoration: underline;
}
a:hover
{
color:#00A0C6;
text-decoration:none;
cursor:pointer;
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-127346874-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-127346874-1');
</script>
</head>
<body bgcolor="#0e1111">
<div class="parallax"></div>
<div height = "800%" style="color:#0e1111;background-color:white;text-align:center;padding:50px 80px;text-align: justify;">
<p class="sans-serif">My name is Daniel. I'm a bright, ambitious and highly motivated Computer Science student at QUB. I'm currently working as an intern at <a href="https://www.anomali.com"><hlink> Anomali</a></hlink>. I have a keen interest in all things tech and I aspire to build a career for myself as a software engineer in Belfast. </p>
<p class="sans-serif">If you wish to contact me, simply drop me an <a href="mailto:[email protected]?" target="_top">email.</a></p>
<p class="sans-serif">or view my cv <a href="resume.html">here</a>.</p>
</div>
<div height = "500%" style= "color:#0e1111;background-color:white;text-align:center;padding:50px 80px;text-align: justify;">
<p align = "center">
<a href="https://twitter.com/leinadjmc"><img src="https://png.icons8.com/metro/1600/twitter.png" name="twitter" alt="twitter" height="100" width="100" align="middlright"></a>
<a href="https://www.linkedin.com/in/leinadjmc/"><img src="https://ubisafe.org/images/linkedin-vector.png" name="linkedin" alt="linkedin" height="100" width="100" align="middlleleft"></a>
<a href="https://github.com/leinadjmc"><img src="https://image.flaticon.com/icons/svg/25/25231.svg" name="github" alt="github" height="100" width="100" align="middlright"></a>
</p>
</div>
</body>
</html>