-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (66 loc) · 2.23 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<title>Richard Andrinirina's portfolio</title>
</head>
<body>
<header class="header">
<nav class="nav-wrap">
<p class="nav-item">Contact</p>
</nav>
<h1 class="intro">
<span>Hi,
<br/> I'm
</span> Richard Andrinirina.
<br/>
<span>An aspiring Front End Developer.</span>
</h1>
</header>
<section class="container">
<h1 class="section-title">My projects</h1>
<div class="project-wrap">
<div class="project p1">
<img src="img/project-01.jpeg" alt="" class="project-img">
<p class="project-content">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque in finibus arcu. Vestibulum iaculis nisi non dolor
sodales, vitae accumsan est consequat.
</p>
</div>
<div class="project p2">
<img src="img/project-02.jpeg" alt="" class="project-img">
<p class="project-content">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque in finibus arcu. Vestibulum iaculis nisi non dolor
sodales, vitae accumsan est consequat.
</p>
</div>
</div>
</section>
<section class="container-bot">
<h1 class="section-title section-title-2">My skills</h1>
<div class="skill-list">
<i class="fab fa-html5 fa-3x"></i>
<i class="fab fa-js-square fa-3x"></i>
<i class="fab fa-css3-alt fa-3x"></i>
<i class="fab fa-sass fa-3x"></i>
</div>
</section>
<footer class="footer">
<p class="footer-author">© RA 2018</p>
<div class="footer-links">
<a href="mailto:[email protected]">
<i class="far fa-envelope"></i>
</a>
<a href="https://twitter.com/r_andrini">
<i class="fab fa-twitter"></i>
</a>
<a href="https://github.com/randrini">
<i class="fab fa-github"></i>
</a>
</div>
</footer>
</body>
</html>