-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
164 lines (151 loc) · 4.93 KB
/
resume.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="resume.css">
<title>www.automatica.tech</title>
</head>
<body>
<!-- Header -->
<section id="header">
<div class="header container">
<div class="nav-bar">
<div class="brand">
<a href="#hero">
<h1><span>R</span>e<span></span>cruitment</h1>
</a>
</div>
<div class="nav-list">
<div class="hamburger">
<div class="bar"></div>
</div>
<ul>
<li><a href="index.html" data-after="Home">Home</a></li>
<li><a href="#services" data-after="Service">Services</a></li>
<li><a href="#about" data-after="About">About</a></li>
<li><a href="#contact" data-after="Contact">Contact</a></li>
</ul>
</div>
</div>
</div>
</section>
<!-- End Header -->
<!-- Hero Section -->
<section id="hero">
<div class="hero container">
<div>
<h1>Enter Your <span></span></h1>
<h1>Resume file name!<span></span></h1>
<h1> <span></span></h1>
<form>
<label for="fname"></label>
<input type="text" id="fname" name="fname" class="cta">
</form>
<div> <a href="guideliness.html" type="button" class="cta">submit</a>
</div>
</div>
</section>
<!-- End Hero Section -->
<!-- Service Section -->
<section id="services">
<div class="services container">
<div class="service-top">
<h1 class="section-title">Serv<span>i</span>ces</h1>
<p>we provide the best service for hr recuitment.it helps to endulege the things faster and in a better way with the
help of online recuriter!</p>
</div>
</div>
</div>
</section>
<!-- End Service Section -->
<!-- About Section -->
<section id="about">
<div class="about container">
<div class="col-top">
<h1 class="section-title">About <span>us</span></h1>
<h2>Software development</h2>
<p>we develop finest sofwares in presence of highittelect streamflow!
</p>
<a href="#" class="cta">Download more softwares</a>
</div>
</div>
</section>
<!-- End About Section -->
<!-- Contact Section -->
<section id="contact">
<div class="contact container">
<div>
<h1 class="section-title">Contact <span>info</span></h1>
</div>
<div class="contact-items">
<div class="contact-item">
<div class="icon"><img src="https://img.icons8.com/bubbles/100/000000/phone.png" /></div>
<div class="contact-info">
<h1>Phone</h1>
<h2>+916300997288</h2>
<h2>+919603836117</h2>
</div>
</div>
<div class="contact-item">
<div class="icon"><img src="https://img.icons8.com/bubbles/100/000000/new-post.png" /></div>
<div class="contact-info">
<h1>Email</h1>
<h2>codeprabhas121@gmail.com</h2>
<h2>love@gmail.com</h2>
</div>
</div>
<div class="contact-item">
<div class="icon"><img src="https://img.icons8.com/bubbles/100/000000/map-marker.png" /></div>
<div class="contact-info">
<h1>Address</h1>
<h2>AndhraPradesh,Vishkaptnam</h2>
</div>
</div>
</div>
</div>
</section>
<!-- End Contact Section -->
<!-- Footer -->
<section id="footer">
<div class="footer container">
<div class="brand">
<h1>R<span></span><span>e</span>cruiter</h1>
</div>
<h2>Your Complete Web Solution</h2>
<div class="social-icon">
<div class="social-item">
<a href="#"><img src="https://img.icons8.com/bubbles/100/000000/facebook-new.png" /></a>
</div>
<div class="social-item">
<a href="#"><img src="https://img.icons8.com/bubbles/100/000000/instagram-new.png" /></a>
</div>
<div class="social-item">
<a href="#"><img src="https://img.icons8.com/bubbles/100/000000/twitter.png" /></a>
</div>
<div class="social-item">
<a href="#"><img src="https://img.icons8.com/bubbles/100/000000/behance.png" /></a>
</div>
</div>
<p>Copyright © 2022 Tech4tmorrow. All rights reserved</p>
</div>
</section>
<!-- End Footer -->
<script src="./app.js"></script>
<script>
let isActive = true;
document.addEventListener('visibilitychange', function() {
if (document.visibilityState === 'visible') {
// Tab is active
if (!isActive) {
document.body.style.backgroundColor = 'black'; // Set background to black
isActive = true;
}
} else {
// Tab is not active
isActive = false;
}
});
</script>
</body>
</html>