-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSMM.html
100 lines (88 loc) · 3.72 KB
/
SMM.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Raytech | Social Media Management</title>
<link rel="shortcut icon" href="" type="image/x-icon">
<link rel="stylesheet" href="css/style.css">
<script src="plugin/jquery-3.5.1.js"></script>
<script src="plugin/flickity.pkgd.min.js"></script>
</head>
<body>
<nav>
<a class="nav-contact" href="#footer">Contact Us</a>
<h1>RayTech</h1>
<img src="img/icon/menu.png" alt="" id="navbtn">
</nav>
<div class="nav-menu column">
<div class="nav-case">
<div class="nav-close"><img src="img/icon/close.png" alt="" id="nav-close"></div>
<div class="nav-a column">
<a href="index.html#home">Home</a>
<a href="index.html#about">About</a>
<a href="index.html#service">Service</a>
<a href="index.html#portfolio">Portfolio</a>
</div>
</div>
<div class="nav-f">
<h1>CONTACT</h1>
<h3>Bali Office</h3>
<p>Jl.Raya Padang Luwih, Br Tegal Jaya, Dalung, Kuta Utara, Badung, Bali 80361, Indonesia</p>
<br>
<p>[email protected] <br>
+62 813 5319 9022 <br>
</p>
</div>
</div>
<div class="content container pad-atas">
<img src="img/services/Social Media Management1.jpg" alt="">
<div class="text-content">
<h1>Social Media Management</h1>
<p>Social Media Management is another service provided by RayTech. It involves managing and monitoring a business's social media accounts to engage with their target audience, build brand awareness, and increase customer loyalty. </p>
</div>
</div>
<div class="content container pad-atas">
<div class="text-content">
<h1>Customer Engagement</h1>
<p>RayTech helps businesses develop a social media strategy, create engaging content, schedule posts, and analyze data to optimize social media campaigns. They also monitor social media accounts for comments and messages and respond to them promptly. By managing social media accounts effectively, RayTech can help businesses improve their online presence, attract new customers, and build long-term relationships with their existing ones.</p>
</div>
<img src="img/services/Social Media Management2.jpg" alt="">
</div>
<footer class="container column" id="footer">
<div class="footer-text">
<div class="logo">
<h1>RayTech</h1>
</div>
<div class="info">
<p>[email protected] <br>
+62 813 5319 9022 <br>
From 2PM to 9PM (UTC+08:00)
</p>
</div>
<div class="lokasi">
<p>Bali Office <br>
Jl.Raya Padang Luwih, Br Tegal Jaya, Dalung, Kuta Utara, Badung, Bali 80361, Indonesia
</p>
</div>
<div class="footer-service">
<p>SERVICES</p>
<div class="service-menu column">
<a href="SEO.html">Search Engine Optimization (SEO)</a>
<a href="CM.html">Content Marketing</a>
<a href="SMM.html">Social Media Management</a>
</div>
</div>
</div>
</footer>
<script>
$("#navbtn").click(function(){
$(".nav-menu").toggleClass("nav-buka");
});
$("#nav-close").click(function(){
$(".nav-menu").removeClass("nav-buka");
});
</script>
</body>
</html>