-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpersonal_portfolio.html
75 lines (74 loc) · 4.4 KB
/
personal_portfolio.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
<html>
<head>
<title>Personal Portfolio</title>
</head>
<body>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"
integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<link rel="stylesheet" type="text/css" href="styles/personal_portfolio.css">
<header id="header">
<nav id="navbar">
<div class="nav-name">
<h1>Jinu Daniel</h1>
</div>
<div id="links">
<ul>
<li><a class="nav-link" href="#welcome-section">Home</a></li>
<li><a class="nav-link" href="#aboutme">About Me</a></li>
<li><a class="nav-link" href="#projects">Portfolio</a></li>
<li><a class="nav-link" href="#contact">Contact Me</a></li>
</ul>
</div>
</nav>
</header>
<div id="welcome-section" class="hero">
<div>
<h1>Hey!! I am Jinu Daniel</h1>
<h3>a self taught web developer</h3>
</div>
</div>
<div id="aboutme">
<h1><span class="underline">About Me</span></h1>
<p>I am a self taught software engineer who likes programming language like HTML, JavaScript and Python.</p>
<p>I also am interested in areas like AI and Machine Learning which I think will transform the software industry.</p>
</div>
<div id="projects" class="work">
<h1><span class="underline">Projects</span></h1>
<div class="all-projects">
<a href="https://codepen.io/jinudaniel/full/bxjQyR/" target="_blank" class="project project-tile project1">
<img class="project-pic" src="https://cloud.githubusercontent.com/assets/15967809/17642794/d084d718-6171-11e6-83fa-ede5d0a67ad2.png" alt="project">
<div class="project-title">Tribute Page</div>
</a>
<a href="https://codepen.io/FreeCodeCamp/pen/ONjoLe" target="_blank" class="project project-tile project2">
<img class="project-pic" src="https://cloud.githubusercontent.com/assets/15967809/17642771/7cd6a0c4-6171-11e6-87fb-915f6084d104.png" alt="project">
<div class="project-title">Random Quote Machine</div>
</a>
<a href="https://codepen.io/FreeCodeCamp/pen/PNKdjo" target="_blank" class="project project-tile project3">
<img class="project-pic" src="https://cloud.githubusercontent.com/assets/15967809/17642772/7d02406c-6171-11e6-8c79-40a2933163dc.png" alt="project">
<div class="project-title">JavaScript Calculator</div>
</a>
<a href="https://codepen.io/FreeCodeCamp/pen/mVEJag" target="_blank" class="project project-tile project4">
<img class="project-pic" src="https://cloud.githubusercontent.com/assets/15967809/17642773/7d08cb94-6171-11e6-8c45-22e7cf64683e.png" alt="project">
<div class="project-title">Map Data Across the Globe</div>
</a>
</div>
<div id=profile>
<a id="profile-link" href="https://codepen.io/jinudaniel" class="show-all" target="_blank">Show all</a>
</div>
</div>
<div id="contact">
<h1><span class="underline">Want to work together</span></h1>
<h3>Let's meet for coffee..</h3>
<ul class="contactme">
<li><a href="mailto:jinudaniel74@gmail.com" id="email"><i class="far fa-3x fa-envelope-open"></i></li>
<li><a href="https://github.com/jinudaniel" id="github"><i class="fab fa-3x fa-github"></i></li>
<li><a href="https://github.com/jinudaniel" id="linkedin"><i class="fab fa-3x fa-linkedin"></i></li>
<li><a href="https://github.com/jinudaniel" id="twitter"><i class="fab fa-3x fa-twitter"></i></a></li>
</ul>
</div>
<footer><p>**This is just a fake portfolio.. All the projects and contact details given are not real..</p>
<p>© Created for <a href="https://www.freecodecamp.com/" target="_blank">FreeCodeCamp</a></p>
</footer>
</body>
</html>