-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (104 loc) · 3.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<meta name="description" content="Portfolio" />
<title>Supreet Kaur</title>
<link
href="https://fonts.googleapis.com/css?family=Metrophobic"
rel="stylesheet "
/>
<link rel="stylesheet " href="portfolio.css " />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.4.1/css/all.css"
integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz"
crossorigin="anonymous"
/>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js "
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"
></script>
<script src="portfolio.js "></script>
</head>
<body>
<!-- Navigation Bar on Top-->
<div class="left-name">Supreet Kaur</div>
<nav class="navbar">
<!--<div class="nav-container">-->
<div class="hamburger">☰</div>
<div class="menu">
<ul>
<li class="about">About</li>
<li class="projects">Projects</li>
</ul>
</div>
<div class="menu-dropdown hide">
<ul>
<li class="about">About</li>
<li class="projects">Projects</li>
</ul>
</div>
<!--</div>-->
</nav>
<main>
<!-- About Section -->
<div role="region" class="container" id="about">
<h2 tabindex="0">About</h2>
<hr />
<p class="container-about">
Hi. I'm Supreet, a full-stack software developer.<br /><br />
I want to work with a team where we can share our unique skills and
grow as an individual. I have experience creating modern ad responsive
websites for mobile and web. I recently graduated from Full Stack
Development Bootcamp at Thinkful. <br /><br />
I love working as a web developer since I can use my imaginative and
technical skills to build user-friendly and creative websites. My time
management skills help to balance workloads efficiently and meet
deadlines. My interests include painting, music, and hiking.
</p>
</div>
</main>
<!-- Footer -->
<footer class="footer">
<div class="footer-container">
<ul class="footer-links">
<li>
<a
aria-label="email"
href="mailto:[email protected]"
target="_blank"
><i class="far fa-envelope foot-icon"></i
></a>
</li>
<li>
<a
aria-label="Github"
href="https://github.com/supu4aqua"
target="_blank"
><i class="fab fa-github foot-icon"></i
></a>
</li>
<li>
<a
aria-label="linkedin"
href="https://www.linkedin.com/in/supreet-kaurb/"
target="_blank"
><i class="fab fa-linkedin-in foot-icon"></i
></a>
</li>
</ul>
<!-- COPYRIGHT SUBFOOTER -->
<p>©Copyright 2020 All rights reserved</p>
</div>
</footer>
</body>
</html>