-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
76 lines (73 loc) · 4.28 KB
/
about.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
<!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">
<title>OnePlus Official Site | OnePlus India</title>
<link rel="stylesheet" href="input.css">
<link rel="stylesheet" href="/assets/style.css">
<link rel="shortcut icon"
href="https://image01.oneplus.net/shop/202003/18/1-M00-12-07-rB8LB15yANmALbyuAAAQvlv7cV0309.ico?v=20200219"
type="image/x-icon">
</head>
<body class="bg-gray-200">
<nav
class="bg-white flex flex-col justify-center items-center md:flex-row md:justify-between lg:top-0 lg:sticky z-30">
<a href="index.html"><img src="https://www.oneplus.com/content/dam/oasis/page/common/logo/OnePlus_Logo.png"
alt="logo" class="w-[5rem] active:scale-105"></a>
<button id="toggle-btn">
<ion-icon name="menu-outline" class="sm:hidden animate-pulse active:bg-gray-400"></ion-icon>
</button>
<ul id="lists" data-value="false"
class="text-red-400 md:bg-red-500 md:text-white flex justify-end space-x-6 py-7 px-8">
<a href="login.html">
<li class="cursor-pointer hover:font-bold text-center sm:pl-4">Login</li>
</a>
<a href="index.html"><li class="cursor-pointer hover:font-bold text-center sm:pl-4">Home</li></a>
<li class="cursor-pointer hover:font-bold text-center sm:pl-[0.65rem]">Contact</li>
<a href="about.html">
<li class="cursor-pointer hover:font-bold text-center sm:pl-4">About</li>
</a>
</ul>
</nav>
<main>
<div class="bg-white shadow-2xl flex flex-col justify-center items-center m-auto mt-6 sm:mt-12 md:mt-20 lg:mt-8 xl:mt-36 w-3/4 lg:w-2/4 rounded-md py-4 lg:py-10">
<div class="flex flex-col justify-center items-center">
<div>
<h1 class="text-center lg:text-3xl py-3 md:py-6 text-red-400 font-bold">OnePlus Website Clone (Responsive)</h1>
</div>
<a href="https://github.com/Musab-Shaikh03"><img src="img/man.png" class="hover:scale-105 animate-pulse w-14 lg:w-max"
alt=""></a>
</div>
<div class="flex flex-col justify-center items-center">
<div class="flex pt-4 md:pt-8">
<div class="text-center lg:text-xl font-bold">Created By:</div>
<div class="text-center lg:text-xl ml-2 text-red-400 font-extrabold">Musab Shaikh</div>
</div>
<div class="flex pt-4 md:pt-6">
<div class="text-center lg:text-xl font-bold">Degree:</div>
<div class="text-center lg:text-xl ml-2 text-red-400 font-extrabold">Bachelor Of Computer Engineer
</div>
</div>
<div class="flex pt-4 md:pt-8">
<a href="https://github.com/Musab-Shaikh03"><button
class="bg-green-400 text-white px-2 py-1 lg:px-3 lg:py-2 font-bold rounded-lg hover:bg-transparent hover:text-black hover:border-green-400 hover:border-2 active:bg-green-400 active:text-white">GitHub</button></a>
<a href=""><button
class="bg-blue-400 text-white px-2 py-1 lg:px-3 lg:py-2 rounded-lg ml-10 font-bold hover:bg-transparent hover:text-black hover:border-blue-400 hover:border-2 active:bg-blue-400 active:text-white">LinkedIn</button></a>
</div>
</div>
</div>
</main>
<footer class="w-full bg-red-500 bottom-0 mt-4 absolute">
<ul class="text-white pb-3 grid justify-center">
<li class="cursor-pointer hover:font-bold text-center">Contact Us</li>
<li class="cursor-pointer hover:font-bold text-center ">More</li>
</ul>
<p class="text-center text-white pb-3 font-medium">Copyright© Oneplus-2022</p>
</footer>
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
<script src="style.js"></script>
</body>
</html>