-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDocument from Prerit Patel
50 lines (49 loc) · 1.61 KB
/
Document from Prerit Patel
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Follow @_prerit.05 on Instagram</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f0f0f0;
padding-top: 50px;
}
.instagram-container {
background-color: #fff;
border-radius: 10px;
padding: 20px;
max-width: 400px;
margin: 0 auto;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
h1 {
color: #333;
}
.instagram-button {
display: inline-block;
background-color: #405DE6;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
margin-top: 20px;
transition: background-color 0.3s;
}
.instagram-button:hover {
background-color: #3f51b5;
}
</style>
</head>
<body>
<div class="instagram-container">
<h1>Follow @_prerit.05 on Instagram</h1>
<p>Stay updated with our latest posts and stories!</p>
<a href="https://www.instagram.com/_prerit.05" target="_blank" class="instagram-button">Follow @_prerit.05</a>
</div>
</body>
</html>
```
You can copy and paste this code into an HTML file and customize it further if needed. Remember to replace `_prerit.05` with the correct Instagram username if you want to advertise a different account.