-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (83 loc) · 3.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/411af9ba62.js" crossorigin="anonymous"></script>
<title>Personal Portfolio</title>
</head>
<body>
<section id="welcome-section">
<h1>Hey I am Jagveer Gagaan</h1>
<p>a web developer</p>
</section>
<section id="projects">
<h2>These are some of my projects</h2>
<div id="projects-container">
<div class="project-tile">
<a href="#">
<img src="images/bhagat_singh.png" alt="bhagat_singh_tribute_page">
<p> <span class="code"> < </span> Tribute Page <span class="code">/></span></p>
</a>
</div>
<div class="project-tile">
<a href="#">
<img src="images/random_quote.png" alt="random_quote_project">
<p><span class="code"> < </span> Random Quote Machine <span class="code">/></span></p>
</a>
</div>
<div class="project-tile">
<a href="#">
<img src="images/calculator.png" alt="calculator">
<p><span class="code"> < </span> Calculator <span class="code">/></span></p>
</a>
</div>
<div class="project-tile">
<a href="#">
<img src="images/map-io.png" alt="world_map_states">
<p><span class="code"> < </span> Map <span class="code"> /> </span>
</p>
</a>
</div>
<div class="project-tile">
<a href="#">
<img src="images/tic-tac.png" alt="tic_tac_game">
<p><span class="code"> < </span> Tic Tac Game <span class="code"> /> </span></p>
</a>
</div>
<div class="project-tile">
<a href="#">
<img src="images/wiki-random.png" alt="wiki_random_article">
<p><span class="code"> < </span> Random Article <span class="code">/></span></p>
</a>
</div>
</div>
<a id="showall-button" href="">Show all <span>></span></a>
</section>
<section id="contact-me">
<div id="contact-head">
<h2>Let's work together...</h2>
<p>How do you take your coffee ?</p>
</div>
<div id="contact-link">
<a href="#" class="contact-details"> <i class="fab fa-facebook"></i>Facebook</a>
<a href="https://www.freecodecamp.org/jagveer_gagaan" class="contact-details" id="profile-link" target="_blank">
<i class="fab fa-github"></i> GitHub</a>
<a href="#" class="contact-details"><i class="fab fa-twitter"></i>Twitter</a>
<a href="#" class="contact-details"><i class="fas fa-at"></i>Send a mail</a>
<a href="#" class="contact-details"><i class="fas fa-phone"></i>Call me</a>
</div>
<a href="#" id="copyright">Created With ❤️ by Jagveer Gagaan</a>
</section>
<nav id="navbar">
<a href="#welcome-section">About</a>
<a href="#projects">Work</a>
<a href="#contact-me">Contact</a>
</nav>
</body>
</html>