-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
116 lines (104 loc) · 3.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Portfolio" />
<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:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/fa62c117c7.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="styles.css" />
<title>Abhishek Inani</title>
</head>
<body class="light" id="top">
<header class="header center">
<h3>
<a href="#" class="link"
>AI.</a
>
</h3>
<nav class="nav center">
<ul class="nav__list center">
<li class="nav__list-item">
<a class="link link--nav" href="#skills">Skills</a>
</li>
<li class="nav__list-item">
<a class="link link--nav" href="#contact">Contact</a>
</li>
</ul>
<button type="button" aria-label="toggle theme" class="btn btn--icon">
<i aria-hidden="true" id="btn-theme" class="fas fa-moon"></i>
</button>
<button
type="button"
aria-label="toggle navigation"
class="btn btn--icon nav__hamburger"
>
<i aria-hidden="true" class="fas fa-bars"></i>
</button>
</nav>
</header>
<main>
<!-- About -->
<div class="about center">
<h1>Hi, I am <span class="about__name">Abhishek Inani.</span></h1>
<h2 class="about__role">A Developer.</h2>
<p class="about__desc">
Cyber Security Enthusiast | Have prior knowledge of programming | SRM University | BTech CSE w/s Cyber Security
</p>
<div class="about__contact center">
<a
href="https://github.com/aa8386"
aria-label="github"
class="link link--icon"
>
<i aria-hidden="true" class="fab fa-github"></i>
</a>
</a>
</div>
</div>
<!-- Projects -->
<!-- Skills -->
<section class="section skills" id="skills">
<h2 class="section__title">Skills</h2>
<ul class="skills__list">
<li class="skills__list-item btn btn--plain">HTML</li>
<li class="skills__list-item btn btn--plain">CSS</li>
<li class="skills__list-item btn btn--plain">JavaScript</li>
<li class="skills__list-item btn btn--plain">C</li>
<li class="skills__list-item btn btn--plain">C++</li>
</ul>
</section>
<!-- Contact -->
<section class="section contact center" id="contact">
<h2 class="section__title">Contact</h2>
<a href="mailto:[email protected]">
<span class="btn btn--outline">Email me</span>
</a>
</section>
</main>
<footer class="footer">
<a
href="#"
class="link footer__link"
>
Created By Abhishek Inani
</a>
</footer>
<div class="scroll-container">
<div class="scroll-top">
<a aria-label="Scroll up" href="#top">
<i aria-hidden="true" class="fas fa-arrow-up"></i>
</a>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>