-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (86 loc) · 3.12 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
<!DOCTYPE html>
<html>
<head>
<title>Shane Ilahi</title>
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin="true">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900&display=swa">
<link rel="stylesheet" href="styles/general.css">
<link rel="stylesheet" href="styles/header.css">
<link rel="stylesheet" href="styles/footer.css">
<link rel="stylesheet" href="styles/content.css">
<link rel="stylesheet" href="styles/responsive.css">
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<header class="portfolio-header">
<div class="active">
<a href="index.html">Home</a>
</div>
<div>
<a href="skills.html">Skills</a>
</div>
<div>
<a href="project.html">Project</a>
</div>
<div>
<a href="contact.html">Contact</a>
</div>
</header>
<main class="main-home">
<!-- 2 Horizontal layout -->
<div class="content-1">
<!-- 4 vertical Layout -->
<div>
<p>Hi, My Name is <span class="name">Shane</span></p>
</div>
<div class="content-1-ima">
<p>I'm a <span class="js-do-ur-thing">Developer</span></p>
</div>
<div class="content-1-para">
A junior front-end developer with an insatiable thirst for knowledge and a deep passion for creating remarkable web experiences.
</div>
<div class="content-1-buttons">
<a href="https://github.com/shaneilahi" target="_blank" class="github-a">
<img src="images/svgexport-2.svg">
</a>
<a href="#">
<img src="images/svgexport-3.svg">
</a>
<a class="download-a">
<button>Download CV</button>
</a>
</div>
</div>
<div class="content-2">
<div class="left-point">
<!-- this is reserved for image -->
<img class="pfp" src="images/pfp.jpg">
</div>
</div>
</main>
<footer>
<div class="footer-icons">
<div>
<a href="https://www.youtube.com/@ShaneBoiGaming" target="_blank">
<img src="images/ytlogo (3).svg" class="yt-icon">
</a>
</div>
<div>
<a href="https://www.instagram.com/your._.shane" target="_blank">
<img src="images/svgexport-5.svg" class="ig-icon">
</a>
</div>
<div>
<a href="https://twitter.com/IlahiShane" target="_blank"><img src="images/svgexport-6.svg" class="bird-icon"></a>
</div>
</div>
<div>
<p>© Copyright 2023 yourshane.com</p>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js" integrity="sha512-16esztaSRplJROstbIIdwX3N97V1+pZvV33ABoG1H2OyTttBxEGkTsoIVsiP1iaTtM8b3+hu2kB6pQ4Clr5yug==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="scripts/animation.js"></script>
<script src="scripts/myskills.js"></script>
</body>
</html>