-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html~
More file actions
151 lines (133 loc) · 4.89 KB
/
index.html~
File metadata and controls
151 lines (133 loc) · 4.89 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
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
147
148
149
150
151
<!DOCTYPE html>
<html>
<head><title>Portfolio</title>
<meta name="viewport" content="width=device-width" initial-scale=1.0/>
<script src="min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css"/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-90660610-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-90660610-1');
</script>
</head>
<body>
<div id="topnav" class="topnav">
<a href="#home">Home</a>
<a href="#portfolio">Portfolio</a>
<a href="#Aboutme">About me</a>
<a href="#contact">Contact</a>
<a class="icon" href="javascript:void(0);" onclick="MenuShow()">☰</a>
</div>
<script>
function MenuShow(){
var x = document.getElementById("topnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
<script>
$(window).on("scroll", function() {
if($(window).scrollTop() > 300) {
$(".topnav").addClass("active");
} else {
//remove the background property so it comes transparent again (defined in your css)
$(".topnav").removeClass("active");
}
});
</script>
<div id="home">
<h1>PRAKASH</h1>
<a href="https://www.fiverr.com/pkzone"><img style = "border-radius:100%; width:200px; height:200px;" src="https://www.yenidendogus.net/forum/customavatars/avatar28446_1.gif"></a>
</div>
<div id="portfolio">
<h1>Portfolio</h1>
<div class="flexer">
<div class="sportfolio">
<img src="images/landing.png" >
<h4>Landing pages</h4>
<p>This is a unique type of dynamic website it is fully bootstrap functional</p>
</div>
<div class="sportfolio">
<img src="images/wordpress.png" >
<h4>Wordpress</h4>
<p>This is a unique type of dynamic website it is fully bootstrap functional</p>
</div>
<div class="sportfolio">
<img src="images/djapp.png" >
<h4> Django app </h4>
<p>This is a unique type of dynamic website it is fully bootstrap functional</p>
</div>
</div>
</div>
<div id= "Aboutme">
<h2 style="text-transform:uppercase;">About me</h2>
<p>Being a successful developer doesn't mean a some skill of implement, they needs to be come up with new technique.
Passion is the most strongest leader of skill in my opinion. I am growing with my experience from zero to this experience level is just because of being product oriented .
I also help people online in their products success.
<div class="skill">
<h2>My Top skills</h2>
<p>HTML</p>
<div class="container">
<div class="skills html">95%</div>
</div>
<p>CSS</p>
<div class="container">
<div class="skills css">90%</div>
</div>
<p>JavaScript</p>
<div class="container">
<div class="skills js">85%</div>
</div>
<p>PHP</p>
<div class="container">
<div class="skills php">70%</div>
</div>
<p>Python</p>
<div class="container">
<div class="skills python">60%</div>
</div>
</div>
</div>
<div class="contact" id="contact">
<h2 style="text-transform:uppercase;">Contact me</h2>
<form method="POST" action="#" netlify>
<input type="text" Placeholder="Name" name='name' required="Name">
<input type="email" Placeholder="Email" name='email' required="Email">
<textarea row="10" placeholder="Write message..." name='message' required></textarea>
<div class="btn-grp"><button type="submit">Submit</button></div>
</form>
</div>
<div class="footer">
© 2017 copyright by Prakash
</div>
<div class="tops">
<a href="#home"><b>top</b></a>
</div>
<script>
$(window).on("scroll", function() {
if($(window).scrollTop() > 500) {
$(".tops").addClass("active");
} else {
//remove the background property so it comes transparent again (defined in your css)
$(".tops").removeClass("active");
}
});
</script>
<script>
$(window).on("scroll", function() {
if($(window).scrollTop() > 400) {
$(".sportfolio").addClass("active");
} else {
//remove the background property so it comes transparent again (defined in your css)
$(".tops").removeClass("active");
}
});
</script>
</body>
</html>