-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
124 lines (96 loc) · 4.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="keywords" content="HTML">
<meta name="keywords" content="CSS">
<meta name="keywords" content="JS">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects</title>
<link rel="stylesheet" href="style.css">
<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=Indie+Flower&display=swap" rel="stylesheet">
</head>
<body>
<!-- header -->
<header id="Home">
<h1>Project With <span><span class="html">HTML</span> <span class="css">CSS</span> <span class="js">JS</span></span></h1>
</header>
<!-- navagation bar -->
<nav>
<ul>
<li><a href="#Home">HOME</a></li>
<li><a href="#Project">Project</a></li>
<li><a href="#contactSection">Contact</a></li>
</ul>
</nav>
<!-- about section ie/ section 1 -->
<section class="aboutSection">
<div class="about">
<h2>Hi 👋, I'm Kunal Umap</h2>
<p>Web Developer | C++ Programer</p>
<p>SEO</p>
<span class="first">Here is some of project which I made Using HTML CSS JS</span>
<span>✨This project help me to learn html css js✨</span>
<span>Hope this wil help you to 😃
</span>
<span>Absolutely if you want source code link att the bottom give star 🌟 to GitHub repo if you like it </span>
<div class="godown">
<span>: source code :</span>
<a href="#contactSection">👇</a>
</div>
</div>
</section>
<!-- project display section -->
<section class="projectSection" id="Project">
<h2>Project's</h2>
<div class="display"></div>
<template id="card-template">
<div class="card">
<div class="index"></div>
<div class="header">
<img class="header-img skeleton" src="" />
<div class="title" data-title>
<div class="skeleton skeleton-head"></div>
<div class="skeleton skeleton-head"></div>
</div>
</div>
<div data-body>
<div class="skeleton skeleton-text"></div>
<div class="skeleton skeleton-text"></div>
<div class="skeleton skeleton-text"></div>
<div class="skeleton skeleton-text"></div>
</div>
<div class="btns">
<a href="" class="btn btn1" target="_blank">PreView</a>
<a href="" class="btn btn2" target="_blank">SourceCode</a>
</div>
</div>
</template>
</section>
<!-- contact section -->
<section class="contactSection" id="contactSection">
<div class="contact">
<div class="arr">
<a href="#Home">👆</a>
</div>
<h3>Connect With Me / Contact</h3>
<p>You can Contribute to my GitHub Account </p>
<div class="connect">
<a href="https://github.com/kunal-umap" target="_blank"><img src="./logo/GitHub.png" alt="" ></a>
<a href="https://www.linkedin.com/in/kunal-umap-58ab36204/" target="_blank"><img src="./logo/linkedin.png" alt="" ></a>
<a href="https://www.twitter.com/kunalumap1?s=09" target="_blank"><img src="./logo/twitter.png" alt="" ></a>
<a href="https://www.instagram.com/kunal.umap.1306/" target="_blank"><img src="./logo/instagram.png" alt="" ></a>
<a href="https://www.facebook.com/kunal.umap.587/" target="_blank"><img src="./logo/facebook.png" alt="" target="_blank" ></a>
</div>
<p>Mail Me: <a href="mailto:umapgkunal@gmail.com">umapgkunal@gmail.com</a></p>
</div>
</section>
<footer>
<p>Copyright©2021 Kunal Umap</p>
</footer>
<script src="main.js"></script>
</body>
</html>