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
66 lines (60 loc) · 1.87 KB
/
index.html
File metadata and controls
66 lines (60 loc) · 1.87 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
<!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 Blog</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<header>
<section class="header_section">
<div class="header_title">
<h1>Web Devloper Portfolio</h1>
<p>Hi there, I'm Akram and i'm Web developer student</p>
<div class="icons_list">
<i class="fa-brands fa-linkedin"></i>
<i class="fa-brands fa-github"></i>
<i class="fa-brands fa-twitter"></i>
</div>
</div>
<img
src="personal_img.jpg"
alt="personal_img"
/>
</section>
</header>
<section class="projects list">
<article class="projects">
<h2>My personal portfolio</h2>
<img
src="https://files.merca20.com/uploads/2018/12/portfolio.jpg"
alt="img of a web developer portfolio"
/>
<p><span class="project-descriptoin">Description</span></p>
</article>
<article class="projects">
<h2>My personal portfolio</h2>
<img
src="https://files.merca20.com/uploads/2018/12/portfolio.jpg"
alt="img of a web developer portfolio"
/>
<p><span class="project-descriptoin">Description</span></p>
</article>
</section>
<footer>
<h2>website created in 2022 by Akram</h2>
<p>[email protected]</p>
</footer>
</body>
</html>