-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (73 loc) · 2.94 KB
/
index.html
File metadata and controls
108 lines (73 loc) · 2.94 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JS-live-project</title>
<!-- ! links for external pages -->
<link rel="stylesheet" href="./style/main.css">
<link rel="stylesheet" href="./style/all.min.css">
<link rel="stylesheet" href="./style/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<!-- ! fonts -->
<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=Electrolize&display=swap" rel="stylesheet">
</head>
<body>
<!-- TODO header -->
<header id="header" class="header">
<div class="sidebar">
<div class="sidebar-header mt-5">
<h5 class="white">JS Project Menu</h5>
</div>
<ul class="nav flex-column">
<li class="nav-item">
<a class="nav-link " aria-current="page" href="./index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./qoute.html">qoute</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./crud.html">crud</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./bookmark.html">bookmark</a>
</li>
<li class="nav-item" >
<a class="nav-link" href="./SignUp.html">SignForm</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">project</a>
</li>
</ul>
</div>
<div class="menu-toggle">
<i class="fas fa-bars" style="font-size: 1.5rem;"></i>
</div>
</header>
<!-- TODO main -->
<main class="page-content">
<div class="container">
<div class="row">
<div class="col-12 text-center d-flex flex-column justify-content-center align-items-center vh-100">
<h1 class="animate__heartBeat white">Welcome to JS live project</h1>
<p class="bg-white p-1">Here you can find all the projects I have worked on using JavaScript.</p>
<p class=" p-1 white">Feel free to explore it .</p>
<div class="git-link d-flex justify-content-center align-items-center mt-2 ">
<span class="fs-4 ">explore the code at github <i class="fab fa-github"></i> </span>
<button class="btn btn-light ms-3"> <a href="https://github.com/maryam2001-ux/javascript_projects" target="_blank" style="text-decoration: none; color: #3a2a6d;">code</a></button>
</div>
</div>
</div>
</div>
</main>
<!-- ! scripts -->
<script src="./scripts/bootstrap.bundle.min.js"></script>
<script src="./scripts/script.js"></script>
<script>
gsap.to("body",
);
</script>
</body>
</html>