forked from Migracode-Barcelona/htmlcss-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 948 Bytes
/
index.html
File metadata and controls
32 lines (31 loc) · 948 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Professional Portfolio</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<header>
<section class="banner"></section>
<div class="greeting-card">
<div class="greeting-text">
<p>Hello, my name is</p>
<h1>DANIEL VIDIGAL BOIWKO.</h1>
<p>I'm a Full Stack Web Developer.</p>
</div>
<a href="https://www.linkedin.com/in/daniel-vidigal-boiwko-b68724193/" alt="blank"><img id="profile-pic" src="img/profilepic.png" height="250px"></a>
</div>
</header>
</body>
</html>