-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstep1.html
34 lines (34 loc) · 1.32 KB
/
step1.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
<!--Telling the browser that's a html archive-->
<!DOCTYPE html>
<!--HTML code starts here-->
<html>
<!--Info we must tell the browser-->
<head>
<meta charset="utf-8">
<title>Maria Clara Santana</title>
</head>
<!--Info that will be showed on the browser-->
<body>
<h1>Hi, I'm Maria Clara Santana!</h1>
<img src="https://fbcdn-sphotos-a-a.akamaihd.net/hphotos-ak-xfa1/v/t1.0-9/12065822_871230939639522_7633111003328337178_n.jpg?oh=5be8cfac286574efd15c65770eb95da4&oe=56EB1C90&__gda__=1458045350_9b9bb756e9379b11075e04271524faee">
<h3>About me</h3>
<p>I'm a Computer Engineering student at Federal University of Alagoas and
I work as Software Engineer and UX Designer at Clip, a startup based on Alagoas.</p>
<p>On my free time I like to develop (and sometimes break) things for fun and profit. I'm also
a sports lover, huge fan of Star Wars and amateur aircraft pilot.</p>
<ul>
<h3>My skills:</h3>
<li>Software Engineering;</li>
<li>UI and UX Design;</li>
<li>Artificial Intelligence;</li>
<li>Data Science;</li>
</ul>
<ul>
<h3>Where you can find me:</h3>
<li><a href="https://github.com/clarasantana">GitHub</a></li>
<li><a href="https://twitter.com/olarclara">Twitter</a></li>
<li><a href="https://medium.com/@mariaclarasantana">Medium</a></li>
</ul>
</body>
<!--Our HTML ends here-->
</html>