-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
146 lines (118 loc) · 5.68 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<html lang="en">
<head>
<link rel="icon" href="/images/image.gif">
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio|Emiliaon-Web developer, Frontend Web Developer.</title>
<!--Google font links-->
<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=Dancing+Script&display=swap" rel="stylesheet">
<link href="/dist/output.css" rel="stylesheet" />
<!--Font Awesome-->
<script src="https://kit.fontawesome.com/04bd0e964d.js" crossorigin="anonymous"></script>
<!---Animate.style-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<link rel="stylesheet" href="/src/input.css" />
</head>
<body>
<div id="preloader">
<div class="animate__animated animate__fadeIn">
<header class="w-full h-16 drop-shadow-lg" >
<div class="container px-4 md:px-0 h-full mx-auto flex justify-between items-center">
<!-- Logo Here
<a class="flex items-center py-4 px-2" href="/" id="sub-title"><span>
<img src="/images/image.gif" alt="" class="h-8 w-8 mr-2" width ="35">
</span></a>
<a class="text-yellow-400 text-xl font-bold italic" href="/" id="title">
<span class="text-white">
<img src="/images/image.gif" alt="" class="h-8 w-8 mr-2" width ="35">
</span>
</a> -->
<div id="title" >
<a href="#" class="flex items-center py-4 px-2">
<img src="/images/image.gif" alt="Logo" class="h-8 w-8 mr-2" width="35" />
<span class="font-semibold text-yellow-400 text-lg"
>Emili<span class="text-white">ano</span></span
>
</a>
</div>
<a class="text-yellow-400 text-xl font-bold italic" href="#" onclick="myFunction()">
<i class="fa-sharp fa-solid fa-moon" id="switch"></i>
</a>
<!-- Menu links here -->
<ul id="menu" class="hidden fixed top-0 right-0 px-10 py-16 bg-gray-800 z-50
md:relative md:flex md:p-0 md:bg-transparent md:flex-row md:space-x-6">
<li class="md:hidden z-90 fixed top-4 right-6">
<a href="javascript:void(0)" class="text-right text-black"
onclick="toggleMenu()">×</a>
</li>
<li>
<a class="text-black opacity-70 hover:opacity-100 duration-300" href="/src/index.html"><i class="fa-solid fa-house"></i> Home
</a>
</li>
<li>
<a class="text-black opacity-70 hover:opacity-100 duration-300" href="/src/projects.html"><i class="fa-sharp fa-solid fa-file"></i> Projects
</a>
</li>
<li>
<a class="text-black opacity-70 hover:opacity-100 duration-300" href="/src/Resume'.html"><i class="fa-regular fa-user"></i> Resume'
</a>
</li>
</ul>
<!-- This is used to open the menu on mobile devices -->
<div class="flex items-center md:hidden">
<button class="text-white text-4xl font-bold opacity-70 hover:opacity-100 duration-300" id="toggle"
onclick="toggleMenu()">
☰
</button>
</div>
</header>
<!--Body text begins here-->
<main>
<h1 class="mt-40 text-center" id="header-title">Hello</h1>
<h2 class="mt-2 text-xl text-center italic" id="hello-text"> I'm Emiliano, Front-End Developer from Lagos, <br>
Nigeria with a rock-solid experience in building websites, complex-web App,
using high-advance tools like tailwind css, sass, React Js etc... </h2>
<div class="image-background">
<img class="object-contain h-5 w-4" src="/images/me.jpeg" width="200" id="myimage">
</div>
<h3 class="mt-4 text-4xl text-center">Let's Connects:</h3>
<div class="flex justify-center" id="social-media">
<span class="span"> <a href=" https://www.facebook.com/profile.php?id=100090494590592 "> <i class="fa-brands fa-square-facebook"></i> </a></span>
<span class="span"> <a href="mailto:[email protected]"> <i class="fa-regular fa-envelope "></i> </a></span>
<span class="span"> <a href="www.linkedin.com/in/emiliano-emiliano-4111b1268 "> <i class="fa-brands fa-linkedin"></i> </a></span>
</div>
<!--Resume' downloak links-->
<div class="download-links">
<a href="/src/Resume'.html">Vist My Resume'</a>
</div>
<br><br><br>
<!-- Javascript Code -->
<script>
var menu = document.getElementById('menu');
function toggleMenu() {
menu.classList.toggle('hidden');
menu.classList.toggle('w-full');
menu.classList.toggle('h-30');
}
</script>
<script>
function myFunction(){
var element = document.body;
element.classList.toggle("dark-mode")
}
</script>
<!--Footer texts-->
<div class="footer-text">
<span class="flex justify-center text-xs">Lagos, Nigeria</span>
<span><p>© 2023</p>
</div>
</div>
</div>
</body>
</html>