-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (52 loc) · 2.18 KB
/
index.html
File metadata and controls
55 lines (52 loc) · 2.18 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
<!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">
<title>freeCodeCamp Portofolio</title>
<link rel="stylesheet" type="text/css" href="free.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
</head>
<body>
<div id="media1">
<div id="navbar">
<nav>
<ul>
<a href="#welcome-section">
<li>Welcome</li>
</a>
<a href="#projects">
<li>Projects</li>
</a>
<a href="#profile">
<li>Portfolio</li>
</a>
</ul>
</nav>
</div>
<div id="welcome-section">
<h1>Intro</h1>
<p>This is a simple Personal Portolfio webpage built to teach members of the Developer Student Club, Responsive Web Design & Github Fundamentals</p>
</div>
<div id="projects">
<a href="https://royalscollectives.netlify.com/"
class="project-tile" target="_blank">
<img src="https://images.unsplash.com/photo-1552602126-0cbc24c1301c?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=400&q=60" alt="RoyalsCollectives Project" title="Project RoyalsCollectives" />
</a>
<a href="https://raga.gylgfoundation.org/"
class="project-tile" target="_blank">
<img src="https://images.unsplash.com/photo-1552575485-64d83a8d94c0?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=400&q=60" alt="RAGA Project" title="Project RAGA" />
</a>
<a href="https://poetrique.xyz/"
class="project-tile" target="_blank">
<img src="https://images.unsplash.com/photo-1552602126-0cbc24c1301c?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=400&q=60" alt="Poetrique Project" title="Project Poetrique" />
</a>
</div>
<div id="profile">
<a id="profile-link" href="https://github.com/Usheninte" target="_blank"><i class="fab fa-5x github fa-github-alt"></i></a>
</div>
</div>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</body>
</html>