-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
70 lines (65 loc) · 1.27 KB
/
portfolio.html
File metadata and controls
70 lines (65 loc) · 1.27 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
<!DOCTYPE html>
<head>
<title>Portfolio</title>
<style>
body {
background-color: #245C46;
}
.github-section{
display: flex;
justify-content: center;
}
#githubLogo{
height: 90%;
width: 90%;
}
.details {
display: flex;
align-items: start;
flex-direction: column;
margin: 50px 50px;
background-color: purple;
}
#githubLogo{
border-radius: 50px;
}
table, th, td{
padding: 25px;
font-family:'Times New Roman', Times, serif;
font-size: 15px;
}
.git-linker{
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
background-color: red;
width: 80%;
height: 19.6rem;
}
.Name-card{
background-color: #496276;
border-radius: 26px;
height: 50%;
width: auto;
font-size: 25px;
}
.git-linker div{
margin-right: 80px;
}
</style>
</head>
<BODY>
<div class="github-section">
<div class="git-linker">
<div>
<a target="_blank" href="https://github.com/mason-san" alt="My-Github-Profile"><img id="githubLogo" src="https://www.nme.com/wp-content/uploads/2020/08/The_Batman_Robert_Pattinson.jpeg" alt="github-logo"></a>
</div>
<div>
<span class="Name-card">
Mazin Moosa
</span>
</div>
</div>
</div>
</BODY>