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
133 lines (126 loc) · 4.14 KB
/
index.html
File metadata and controls
133 lines (126 loc) · 4.14 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!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 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" />
<script
src="https://kit.fontawesome.com/9cdc9f5b58.js"
crossorigin="anonymous"
></script>
</head>
<body>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<header>
<section id="banner"></section>
<section id="greeting">
<section class="content">
<h1>Hello! I'm Samuel Li Wang.</h1>
<p>
I'm a junior web developer from Spain with experience in HTML5,
CSS3, Javascript and React. I have also experience with the back-end
programming with Node.js and SQL. I am on my way to become a
full-stack develeoper. I live in Barcelona.
</p>
</section>
<p>
<img src="../images/profile_picture.jpeg" alt="profile picture" />
</p>
</section>
</header>
<main>
<!-- this first section is for PORTADA, CLAIM in English -->
<section class="projects">
<h2>MY PROJECTS</h2>
<div class="card-container">
<div class="card" id="card1">
<img src="./images/background_image.jpg" alt="project preview" />
<div class="card-text-wrapper">
<h3>Project 1</h3>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Voluptas, asperiores?
</p>
<div class="card-link">
<a href="" target="_blank">SEE THE CODE</a>
</div>
</div>
</div>
<div class="card" id="card2">
<img src="./images/background_image.jpg" alt="project preview" />
<div class="card-text-wrapper">
<h3>Project 1</h3>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Voluptas, asperiores?
</p>
<div class="card-link">
<a href="" target="_blank">SEE THE CODE</a>
</div>
</div>
</div>
<div class="card" id="card3">
<img src="./images/background_image.jpg" alt="project preview" />
<div class="card-text-wrapper">
<h3>Project 1</h3>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Voluptas, asperiores?
</p>
<div class="card-link">
<a href="" target="_blank">SEE THE CODE</a>
</div>
</div>
</div>
<div class="card" id="card4">
<img src="./images/background_image.jpg" alt="project preview" />
<div class="card-text-wrapper">
<h3>Project 1</h3>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Voluptas, asperiores?
</p>
<div class="card-link">
<a href="" target="_blank">SEE THE CODE</a>
</div>
</div>
</div>
</div>
</section>
<div id="lower-banner"></div>
<section class="contact">
<h2>GET IN TOUCH WITH ME</h2>
<div class="link-container">
<div class="contact-link">
<a href="" target="_blank"
><i class="fa-brands fa-linkedin"></i>LinkedIn</a
>
</div>
<div class="contact-link">
<a href="" target="_blank"
><i class="fa-brands fa-github"></i></i>GitHub</a
>
</div>
</div>
</section>
</main>
<footer>
<div class="copyright">
<p>
Barcelona, 2022
</p>
</div>
</footer>
</body>
</html>