-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (117 loc) · 5.05 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Anderson's FCC Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<link href="https://fonts.googleapis.com/css?family=Krub" rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU"
crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/smooth-scroll/14.2.1/smooth-scroll.js"></script>
<script src="main.js"></script>
</head>
<body>
<nav>
<ul>
<li>
<a href="#welcome-section">About</a>
</li>
<li>
<a href="#projects">Projects</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</nav>
<section id="welcome-section">
<div class="welcome">
<h1>Hi, I'm Anderson</h1>
<p>A junior web developer from Venezuela</p>
<hr class="style1">
</div>
</section>
<section id="projects">
<br>
<div class="projectheader">
<h3 class="titleproject">Some of my latest works</h3>
<p> I like to make stuff from scratch and work with JS! I'm currently learning React and
<a href="https://github.com/noandersonls/pinterest-clone" target="_blank" style="text-decoration: none; color: rgb(231, 105, 91);">Rails</a>, here you can see some of my projects!
</p>
</div>
<div class="cardflex">
<div class="card">
<a href="https://codepen.io/noandersonls/pen/KxYjvo" target="_blank" style="text-decoration: none;">
<img src="img/BONSAINC.jpg" alt="Bonsainc" style="width:100%" class="cardimage">
<div class="card-container">
<h4>
<b>Bonsa.inc</b>
</h4>
<p>Product page example</p>
<p class="subtitle">Created for FreeCodeCamp</p>
</div>
</a>
</div>
<div class="card">
<a href="https://noandersonls.github.io/olympusgames/" target="_blank" style="text-decoration: none;">
<img src="img/olympus.png" alt="OlympusGames" style="width:100%" class="cardimage">
<div class="card-container">
<h4>
<b>OlympusGames.cl</b>
</h4>
<p>My online games store</p>
<p class="subtitle">Follow @OlympusGames.cl</p>
</div>
</a>
</div>
<div class="card">
<a href="https://github.com/noandersonls/pinterest-clone" target="_blank" style="text-decoration: none;">
<img src="img/officegram.jpg" alt="OFficegram" style="width:100%" class="cardimage">
<div class="card-container">
<h4>
<b>Officegram</b>
</h4>
<p>Instagram Clone</p>
<p class="subtitle">Made with Ruby on Rails</p>
</div>
</a>
</div>
</div>
</section>
<section id="contact">
<div>
<h3 class="contact-header">Feel free to contact me!</h3>
<div class="contact-div">
<a href="https://github.com/noandersonls" target="_blank" class="contact-item">
<i class="fab fa-github contact-icon"></i>
</a>
</div>
<div class="contact-div">
<a href="https://linkedin.com/in/no-andersonjs" target="_blank" class="contact-item">
<i class="fab fa-linkedin contact-icon"></i>
</a>
</div>
<div class="contact-div">
<a href="https://twitter.com/noandersonls" target="_blank" class="contact-details">
<i class="fab fa-twitter-square contact-icon"></i>
</a>
</div>
<div class="contact-div">
<a href="mailto:[email protected]" class="contact-item">
<i class="fas fa-envelope-square contact-icon"></i>
</a>
</div>
</div>
</section>
<footer>
<p id="footer-p">© Made by
<a href="https://www.twitter.com/noandersonls" target="_blank">Anderson</a> with
<i class="fas fa-heart"></i>
</p>
</footer>
</body>
</html>