Automatically translated.View original post

Content # 2 in appscript

# Web Site Writing Basics

# google # appscript

How to create 3 slides using HTML, CSS and input radio tags is as follows:

HTML structure

You'll start by creating a core structure in HTML, consisting of a container for encapsulating all slides, slides for each image, and labels that serve as a control button. Using the input type = "radio" tag together with the label allows you to switch images without JavaScript.

• Container: is the main part that covers all elements. Used to determine the size and position of all slides.

• Slides: Each image is placed in a div with the class that slides. Each div is positioned to overlap.

• Navigation: This section contains the input type = "radio" and the label which controls the display of the image. Each input has a unique id, and each label has a for attribute that refers to the id of the input. When the user clicks the label, the corresponding input can be selected and CSS can be used to change the image.

• Input: will be hidden with CSS

• Label: Will be designed to be a point or button that the user can see and click on.

HTML code

HTML

< div class = "slider-container" >

< div class = "slider" >

< input type = "radio" id = "slide1" name = "slider-nav" check >

< input type = "radio" id = "slide2" name = "slider-nav" >

< input type = "radio" id = "slide3" name = "slider-nav" >

< div class = "slides" >

< div class = "slide slide-1" >

< h1 > Slide 1 < / h1 >

< p > Content for first slide < / p >

< / div >

< div class = "slide slide-2" >

< h1 > Slide 2 < / h1 >

< p > Content for Second Slide < / p >

< / div >

< div class = "slide slide-3" >

< h1 > Slide 3 < / h1 >

< p > Content for third slide < / p >

< / div >

< / div >

< / div >

< div class = "dots-nav" >

< label for = "slide1" > < / label >

< label for = "slide2" > < / label >

< label for = "slide3" > < / label >

< / div >

< / div >

CSS code

CSS is an important part of making slides work.

• Positioning: Use position: relative for slider-container and position: absolute for slides so that all images overlap inside the container.

• Hiding Input: Hide input type = "radio" with display: none; or visibility: hidden;

• Visualization: Use opacity: 0; to hide all slides. And when the input is selected with: check pseudoclass, it changes the opacity of the relevant slides to 1.

• Dot Decoration: Design the label to be a circle or dot (dot) and use: check + .slides to change the color of the dot when the slide is selected.

CSS

Body {

Font-family: Arial, sans-serif;

Display: flex;

Justify-content: center;

align-items: center;

Height: 100vh;

Background-color:# f0f0f0;

Margins: 0;

}

.slider-container {

width: 80%;

Max-width: 600px;

Height: 400px;

Position: relative;

Overflow: hidden;

box-shadow: 0 4px 8px rgba (0, 0, 0, 0.2);

Border-radius: 8px;

}

.slider {

width: 100%;

Height: 100%;

Position: relative;

}

.slider input [type = "radio"] {

Display: none;

}

.slides {

width: 100%;

Height: 100%;

Position: relative;

}

. Slide {

width: 100%;

Height: 100%;

Position: absolute;

Top: 0;

Left: 0;

Opacity: 0;

Transition: opacity 0.5s ease-in-out;

Background-color:# fff;

Display: flex;

Flex-direction: column;

Justify-content: center;

align-items: center;

Text-align: center;

padding: 20px;

Box-sizing: border-box;

}

# slide1: checked ~ .slides .slides-1,

# slide2: checked ~ .slides .slides-2,

# slide3: checked: checked ~ .slides .slide-3 {

Opacity: 1;

}

.dots-nav {

Position: absolute;

Bottom: 20px;

Left: 50%;

Transform: translateX (-50%);

Display: flex;

Gap: 10px;

}

.dots-nav label {

width: 12px;

Height: 12px;

Background-color: # cc;

Border-radius: 50%;

Cursor: pointer;

Transition: background-color 0.3s ease;

}

# slide1: checked ~ .dots-nav label [for = "slide1"],

# slide2: checked ~ .dots-nav label [for = "slide2"],

# slide3: checked ~ .dots-nav label [for = "slide3"] {

Background-color: # 333;

}

Further explanation

This code uses CSS sibling combinator (~), which selects the same level address element (sibling) to change the properties of the slide when the corresponding input is selected (: checked). This method makes the slide creation work without writing any JavaScript code, which greatly reduces the complexity of the code.

2025/9/22 Edited to

... Read moreนอกจากการสร้างสไลด์ด้วย HTML และ CSS แบบไม่ใช้ JavaScript แล้ว หากคุณสนใจจะทำสไลด์ประกอบเพลงบนคอมพิวเตอร์ (PC) ก็มีโปรแกรมฟรีและง่ายต่อการใช้งานสำหรับผู้เริ่มต้น เช่น โปรแกรม Windows Movie Maker หรือโปรแกรม OpenShot ซึ่งช่วยให้คุณสามารถนำภาพสไลด์ที่สร้างขึ้นมารวมกับเพลงและเอฟเฟกต์ต่าง ๆ ได้อย่างมืออาชีพ การใช้โปรแกรมเหล่านี้ คุณสามารถเพิ่มเพลงประกอบ เพิ่มข้อความ หรือใส่การเปลี่ยนภาพแบบต่าง ๆ ได้ตามต้องการโดยไม่ต้องเขียนโค้ดเอง ช่วยให้การทำงานสะดวกและรวดเร็วขึ้นมาก หากคุณต้องการเชื่อมการแสดงผลภาพสไลด์แบบเว็บกับเสียงเพลงโดยตรง อาจต้องใช้ JavaScript ร่วมด้วย หรือลองใช้ไลบรารีแสดงสไลด์แบบสำเร็จรูป ที่รองรับการเล่นเพลงหรือวิดีโอในสไลด์ ซึ่งจะช่วยประหยัดเวลาพัฒนาและทำให้เว็บไซต์ของคุณตอบโจทย์ผู้ใช้งานมากขึ้น การทำความเข้าใจพื้นฐาน HTML และ CSS ก่อนจะทำให้คุณปรับแต่งสไลด์และดีไซน์เว็บให้ออกมาตรงใจและมีความน่าสนใจมากขึ้น ขอแนะนำให้ลองฝึกทำโค้ดตัวอย่างและทดลองปรับแก้ไขดูบ่อย ๆ เพื่อเพิ่มทักษะและความชำนาญครับ

Related posts

Best app to use to create content with a script? #ugcforbeginners
Heather Havenwood

Heather Havenwood

0 likes

A person wearing headphones, looking at a laptop, with an overlay showing a search for 'CapCut' on a phone screen, illustrating the first step to finding the app.
A phone screen displaying a notes app with a script titled 'Create your note', showing the initial step of preparing content for video creation.
A phone screen showing a search for 'CapCut' and 'BIGVU' apps, with text overlay 'Go to CapCut', indicating the next step in the process.
THE BEST APP FOR CONTENT CREATORS STEP BY STEP 📲
THE BEST APP FOR CONTENT CREATORS STEP BY STEP hey love , I found an easy way to create your videos with- the app cap cut using their ai script to video tool step 1: create your note ( script ) step 2 : Go to capcut step 3: select script to video step 4: add your script step 5: past
Luxurytaz

Luxurytaz

22 likes

Create Your AI Twin! 🤯
Create Your AI Twin! 🤯 It’s official: you can now create your own AI Twin, in the Captions App. The app can also script out your reels, offer a teleprompter for your talking-to-camera content and use ai to make sure your eyes are looking directly into the camera! No more overthinking what
Iamelleross

Iamelleross

71 likes

A step-by-step guide titled 'How To Create Viral Content in 60 Seconds' outlines 11 actions. These include finding viral ideas using a platform, generating content scripts with an AI tool, creating videos or designs, editing, and consistent daily posting, claiming 40 million views were achieved.
Viral Content Steps Anyone Can Use Fast
Simple Steps to Create Viral Content Fast Most people want to go viral But they keep guessing They post random stuff They hope something sticks That’s not how it works anymore Not in 2026 Not with AI running the show This post breaks down a simple system Step-by-step Built for every
fig3lvls

fig3lvls

535 likes

Part of an aesthetic content planning session from a little while ago ✨ #contentcreation #contentplanning #notion #planwithme #aesthetic
Ana Josephine

Ana Josephine

2 likes

How Creators Use ChatGPT for Ideas & Scripts
One of the biggest challenges creators face is coming up with fresh ideas and writing engaging scripts. ChatGPT helps creators brainstorm content ideas, write captions, and even generate full scripts in minutes. Instead of staring at a blank page for hours, creators can quickly get inspiration and
Evera

Evera

13 likes

The best app for your YouTube scripts!
This app offers a top-notch teleprompter that is a game-changer for anyone in need of a reliable and user-friendly tool for public speaking. With this app, users can easily input their scripts and display them in a clear and customizable format, making it a breeze to deliver speeches, presentations
Doni Kay 💕👑

Doni Kay 💕👑

43 likes

Apps I use a content creator! ✨🌸
Follow me on Twitch @ M4M4GH0ST! 🍓 1. PhotoRoom- An app that automatically removes backgrounds! 🍒2. Milkshake- An app that helps create a link to all your social media accounts! 🍓4. Canva- An app to develop all kinds of customizable content for social media and videos! 🍒5. Pinterest-An
Juliet 🖤

Juliet 🖤

179 likes

Write a Movie Script! 🌸🍋
What’s your favorite movie? 🍿 🎥 Do you love romcoms or horror flicks? Maybe you love action or sci-fi. If you’ve seen a lot of them, you might be thinking that you can write one too. And yes you should!! It will be fun. Now watching a movie or even having it memorized isn’t the same as reading
Lemon Writer

Lemon Writer

51 likes

The image presents nine app icons with text descriptions of their functions, covering photo and video editing, planning, social media linking, content creation, short video trends, graphic design, idea generation, and YouTube analytics.
Editing apps
#entrepreneur #contentcreator #fyp #trending
Lexi Renae | ✨Barbie ✨

Lexi Renae | ✨Barbie ✨

131 likes

✨🍋ChatGPT Prompts EVERY Content Creator NEEDS🍋✨
Struggling to come up with fresh content ideas? Use these 10 ChatGPT prompts to brainstorm, plan, and create with ease! Just copy, paste, and watch the magic happen! 1️⃣ “Give me 10 content ideas related to [your niche].” → Perfect for breaking through creative blocks and keeping your content f
Margarita

Margarita

786 likes

These two tools will help you with reach!
I definitely hope these insights and tips will help you reach your content goals! I think these two tools, can really create a big impact on your content. I use it every single time I’m about to make content on TikTok. Whether you create content for fun, UGC or shop, last slide I included results o
Truulyjen

Truulyjen

163 likes

A ChatGPT Prompting Cheat Sheet displays three columns: 'Act as a (ROLE)', 'Create a (TASK)', and 'Show as (FORMAT)'. Each column lists various options like CEO, Marketer, Essay, Article, List, and PDF. A formula at the bottom reads: 'Acting as a (ROLE) perform (TASK) in (FORMAT)'.
ChatGPT Prompt Guide for Content Creation
ChatGPT Prompt Cheat Sheet That Makes Content Creation 10x Easier Most people open ChatGPT and freeze Not because they’re lazy But because they don’t know what to ask This post is for anyone who’s ever stared at a blank screen Trying to figure out how to write a caption Build a product S
fig3lvls

fig3lvls

586 likes

How to clone yourself the right way 💯
I’m tired of people not actually showing the real deal step-by-step of these tutorials. So here you go lol thank me later…(check previous post for completed video) There’s a couple things I’m not seeing people tell their audience when showing them how to clone themselves on CapCut👇🏽 1️⃣ A tri
Shanelle Janai

Shanelle Janai

6828 likes

Pitch template for ugc Content Creators☕️☕️
Pitch template for ugc Content Creators who's struggling to find what to write to Brands Here's are some templates you can adjust them if you need to 🌹🌹 #ugccreator #ugc #ugcportfolioexample #UGCCreatorTips #digitalmarketing
DIGITAL VIRAL BOSS

DIGITAL VIRAL BOSS

155 likes

How to Write Video Scripts Fast
Let’s be real: writing video scripts feels awkward sometimes. You’re staring at a screen, trying to sound natural, but it ends up sounding like you’re reading from a teleprompter. We’ve all been there. Here’s how you stop that nonsense and actually sound like yourself: 1️⃣ Use ChatGPT t
Content & Systems Expert

Content & Systems Expert

1 like

A close-up of the CapCut app icon, a pink ribbon-like logo on a black background, with text indicating it's used for video editing and is free and easy to use.
App I use to create content
Just sharing what I use to create content. If you guys have any more ideas on apps to help with content, creation, or apps that you use, I’d love for you to share!☺️✨ #appsforcontentcreator #contentcreationapps #contentcreatortipsforbeginners #postingtips
Kayla

Kayla

29 likes

A woman stands on a balcony overlooking a lush green mountain landscape with fog and a rainbow. Text overlay reads: "HOW I USE CHATGPT TO BRAINSTORM 30 DAYS WORTH OF CONTENT" and "the exact prompt i use in the caption" with the Lemon8 logo and username.
Using ChatGPT as a Content Creator
Make a free account on Chat GPT, start a fresh chat and paste this prompt. Make sure to edit the uppercase parts to fit your niche and content pillars. _______ “Acting as a social strategist, create a 30-day social media content calendar. The Focus is on INSTAGRAM REELS. The content should revo
Maddie Brandon

Maddie Brandon

93 likes

CONTENT CREATORS💕
here are some prompts that you can ask ChatGPT so you can get help and make sure your content is giving what it needs to give💕 #contenttipsandtricks #contencreatortips #contentmanagement #chatgptprompt
ranarowan

ranarowan

3463 likes

A woman in a white crop top and dark pleated skirt poses outdoors in front of a modern building. The image features a large text overlay that reads "chatgpt for CREATORS" and the Lemon8 logo with username "@almeezyuh" at the bottom.
This image displays ChatGPT prompts for content ideas, including generating key points for beginners, script outlines for videos, and series topics for specific niches. The text is presented on a light purple background with a darker purple border.
This image presents ChatGPT prompts for content capturing, covering cinematic styles, camera settings for various conditions, frame rates, and choosing between GoPro, iPhone, or digital cameras. The text is on a light purple background with a darker purple border.
Use chatGPT to become an influencer 🤩
Yep, chatGPT can do that to. I think we can all agree that the best part of being a content creator is getting to share your hobbies with others! It comes so naturally. But sometimes you are so engrossed in your hobby that you forget what its like to be a beginner and not know anything, which c
meezy

meezy

1971 likes

How To: Teleprompter App
Struggling to remember your script on camera? Say goodbye to awkward pauses and hello to confident delivery! In this video, I’ll show you exactly how to use the Teleprompter App by Teleprompter Apps Ltd to level up your content creation game. Whether you’re filming YouTube videos, TikToks, Reels, o
Trae Spears

Trae Spears

1 like

script formatting (screenwriting)
you don't need to pay a lot of money you can do it free on Google docs 💕 #unfiltered #lemon8challenge #screenwriting #writing #writersoflemon8 #tips #tipsandtricks #tipsandtrick #writingcommunity #writersoflemon
Killi🥀

Killi🥀

14 likes

✨📱 Apps You’ll NEED as a Content Creator 💻💅🏾
Whether you’re just starting out or leveling up your content game, these apps will have you editing, planning, and posting like a pro 👏🏾 💡 Save this post so you don’t forget! 🎬 For Editing: CapCut, VLLO, InShot, Lightroom 📆 For Planning: Notion, Planoly, Trello 💰 For Monetizing: Stan
Boss Girl University

Boss Girl University

4755 likes

7 Days of Content Prompts in Less than 2 Minutes🤯
💬Comment ‘CONTENT’ for 90 More Prompts! 💾SAVE 👉🏽 7 Content Prompts for Chat GPT content creation… If you’re looking for ways to get AI and Chat GPT to plan your content for you, & save time content planning… this video is for you! Grab this simple prompt to plan your next 7 days of c
Iamelleross

Iamelleross

809 likes

A smartphone displays the icon for a video captioning app, with text overlay 'BEST APP FOR VIDEO CAPTIONS' on a colorful background, next to a beaded bracelet.
A smartphone shows a video editing app's interface with options like import, script, teleprompter, and AI features, highlighted with text overlays on a vibrant background.
A smartphone displays a video editing screen within a captioning app, showing a person speaking with captions, alongside text indicating a high rating and annual subscription details.
✨Best app for video captions✨
Get Captions app is 100% an app I will never stop using as a content creator. There are so many choices when it comes to using captions on your videos and this one by far is the winner. Here’s why you should be using captions on your videos in the first place: 🌈Accessibility: Captions make vid
Lauren 🪩🩷🌈

Lauren 🪩🩷🌈

94 likes

ChatGPT Prompts for Content Creators
#chatgpt #chatgptprompts #contentcreatortips
Bre Na’Keaia

Bre Na’Keaia

2828 likes

CHAT GPT CHEATCODE PROMPTS
How to learn Chat GPT prompts for content. Save and share with others. #chatgpt #chatgptprompt
MommyBossLife

MommyBossLife

9571 likes

Use CPX AI vision to get a better script!
Most script generators just rewrite prompts. CPX actually understands content. The CPX Script Generator doesn’t rely on generic templates or recycled phrases. It uses AI vision to analyse real visuals, trends, and context, then writes scripts that match how people actually watch content. What m
Tony

Tony

0 likes

Sora 2 Prompt Framework: How to Write AI Videos
Sora 2 just changed how we create AI videos — again. This Prompt Framework turns your text into a director’s script, breaking it down into: ✨ Scene description 🎥 Camera framing & cinematography 🎭 Mood 🎬 Actions 💬 Dialogue If you’ve ever wanted your AI videos to look like they came st
Dr Cynthia Chirwa

Dr Cynthia Chirwa

15 likes

Your POSH Free UGC Script Pack
5 ready-to-use UGC scripts to help creators film with confidence and pitch like pros🎁💯🔥 #ugctipsforbeginners #ugcforbeginners #ugcwork #ugctipsandtricks #posh
POSH🌸

POSH🌸

4 likes

How to do the walk-in edit on CapCut
How to do the CapCut walk-in with text edit ✨ This beginner-friendly tutorial shows you step by step how to make your text move with you, so your videos look polished, professional, and ready to go viral! Perfect for content creators who want to upgrade their editing game and keep their audience ho
Lucia

Lucia

3401 likes

💸 COMMENT “CASHFLOW to stop overthinking and finally start making content that pays. I batched 7 videos in less time than it used to take me to pick a caption. No fancy gear. No filters. Just strategy that actually works. I used to waste hours second-guessing everything. Now I batch in
❌Earn with April❌

❌Earn with April❌

3 likes

MY FAVORITE APPLICATIONS TO CREATE CONTENT 📸
I am sure you have heard about a lot of different applications that can help you create content. I still wanted to share some of my all time favorites. To be honest I use them almost everyday if not every single day. 🔥 1- NOTION If you haven’t heard of it or are not using it please give it a tr
Ines blond

Ines blond

82 likes

A smartphone screen displays the title "6 Apps I Use To Make Content" in pink text. The background features a pink and purple aesthetic with palm trees and a pool. A "Swipe" indicator is visible at the bottom right, along with the user's handle.
6 Apps I Use To Create Content
When I’m making content I like to stay as organized as I can..most days. Here’s a couple of apps I use on a daily basis to help me stay focused and create, plan or edit content. 1. Calendar - Of course for the usual..marking events and other important dates 2. Reminders - For time sensitive th
Ciara Yarbrough

Ciara Yarbrough

1241 likes

✍🏾Reminder Task Board ✨
Did you know you can use Reminders to plan your content? You can create a simple frame and drop content planner in reminders using the column view, you can even add your content. This setup is perfect for organizing ideas, scripting, editing, and publishing all in one spot. In fact you can
AshLee

AshLee

139 likes

A hand wearing a charm bracelet holds a pink digital camera with a zoom lens (8.8-36.8mm 1:1.8-2.8) and a flip-out screen. The image has a text overlay 'WHAT TO SAY ON PODCAST' and a Lemon8 watermark with a username.
WHAT TO SAY ON YOUR PODCAST
Short script template for starting a podcast #Lemon8Diary #socialmediatips #contentcreatortips
ChamiaTiarra

ChamiaTiarra

3205 likes

An overhead shot shows two cameras, an invoice screen displaying $110,364.88 in paid invoices, and the text 'HOW TO MONETIZE YOUR CONTENT'. This image illustrates the financial success discussed in the article.
A person holds a checkered cup in a home setting, with text overlays advising to 'START AT HOME' by proving capability without monetary incentive to build trust. It emphasizes that 'Your honest opinion MATTERS'.
A computer screen displays planning documents and calendars, with a hand holding a stylus. Text advises to 'PLAN YOUR POSTS', brainstorm with AI, and stick to a schedule, highlighting consistency for both algorithms and human brains.
HOW TO START MONETIZING YOUR CONTENT | Part I
I’m Chey, and I created a multimillion dollar company by the age of 32. I’m from Los Angeles California and I did not grow up in a privileged lifestyle in any way. At the age of 24 I was living out of my car, jumping from job to job, and felt completely hopeless for what tomorrow might brin
fromcheywithlove

fromcheywithlove

1923 likes

Screenplay vs Script: What’s the Difference?
Screenplays and scripts: What's the difference? Think of it as a narrative vs technical approach. A script contains dialogue, scenes, settings, cinematic, and technical specifics, while a screenplay can do all of that, but does it via the art of storytelling. It sells an idea by focusing more o
Garvescope

Garvescope

1 like

apps i used to create my YouTube video! 🎥💡📸
Channel Handle: itsgillianmae Please subscribe, it would mean so much to me! 🪐 🎥Camera: iPhone 13 Pro Max 🎧Editing software: CapCut (Pro) 🪄Thumbnail: Canva 📱Intro/Outro: Canva 🎵No Copyright Music: YouTube Audio Library #youtubeideas #youtuberecommendations #youtubevideoideas #yo
Gillian Mae🧿

Gillian Mae🧿

336 likes

A list titled 'Best Apps For AUTO CAPTION' featuring Otter.ai, Kapwing, Descript, Rev.com, Veed.io, Clipchamp, Subtitle Horse, Zubtitle, Sonix.ai, Simplified, Fixier, and Caption.ai. Icons for closed captions, text, and video recording are also shown.
Effortless Video Production with Top Auto-Caption
Enhance your videos with auto-caption tools like Otter.ai and Descript. Ensure accessibility and reach a broader audience effortlessly. Dive deeper into these tools on my blog—link in bio! #ai #design #contentcreator #apps #tipsandtrick #tips
Online Growth

Online Growth

5 likes

MONETIZING FB
Hey girlies! 💗 I will be posting my #RAW journey with FB monetization. My reason being is bc I see too many “pick a niche” posts. Which, those post could be accurate and is easier when you have a theme. BUT I just feel like everyone uses the same script, which, I get bc we all use AI. I will po
Evelynn Prz

Evelynn Prz

511 likes

Content creation routine & apps used 📷
After a lot of trial and error, I've finally perfected my content creation routine.. and these are the apps I use from brainstorm to edited content! 👀 BRAINSTORM I used to make content brainstorming so complex, with a full template and a million little sections to fill out, and honestly it
Allie Marie 🧚🏻

Allie Marie 🧚🏻

190 likes

My First Film script is completed!
Next goal in my acting journey: To write, direct, produce, and star in my first film. After weeks and weeks of writing, rewriting, editing, and rewriting again, I have officially finished my first script. Script is almost 40 pages, which means it will be more of a short film. Even though it
Nikki Hrichak

Nikki Hrichak

5 likes

A yellow graphic with text 'youtube Scripting The correct way'. It features a yellow vintage typewriter, a lightbulb, flowers, and a pen icon, promoting a video about scripting. The bottom left includes 'Lemons' and '@veronicadiazb'.
New video on scripting
Good advice don’t miss it #letschat
Veronica D.

Veronica D.

9 likes

Just a script I’m working on
#smallville #superman #script
Dallinscreations

Dallinscreations

5 likes

An image showing a mobile app interface for video editing, with overlaid red text 'The Best App For New YouTubers' and a YouTube play button logo. It displays sections like 'Explore' with 'Trending Caption Sets' and 'Projects'.
The Best App For New YouTubers
If you’re trying to start a YouTube channel you have to use CapCut. It’s such an easy app to use to edit your videos. Let me know what other questions you have about YouTube #youtubechannel #youtuber #youtube #contentcreator
MichaelGrayYT

MichaelGrayYT

33 likes

A dark-themed flat lay shows a laptop displaying content ideas, a stylus, and a smartwatch. Overlay text reads "What I use to CREATE CONTENT MY FAVE APPS," introducing a list of favorite content creation applications.
The Canva app icon is featured above text describing its use for content creation, including saving brand kits, organizing graphics, creating templates, presentations, and social media content. A hand holds a phone, with a laptop and drink in the background.
The InShot app icon is displayed above text stating it's used for video editing, described as user-friendly. The background shows a laptop and a light-colored planner.
Apps I use for content creation
These are my most used and loved apps for creating content on social media. I do use the paid version of all of them…I’ve thought about canceling caption writer but I just can’t get myself to do it for the fact that I can organize my captions into folders, it keeps track of word count, bold text, an
Holly Faye

Holly Faye

1061 likes

Faceless content is on the rise!
Ready to start your faceless content journey? 👀✨ Learn how to create viral videos without showing your face! 👉 Follow for more tips & inspo! #CONTENT #contentideas #facelesscontentcreator
A.nt.i

A.nt.i

1803 likes

How to Plan your Content for a Month
The exact content system to plan your content every single month! Hope this helps #cozychats #betraylist #christmaswishlist #inyour20s #UGCCreators
DIGITAL VIRAL BOSS

DIGITAL VIRAL BOSS

32 likes

Script editing
TimPrisMedia

TimPrisMedia

1 like

Relax and Film
When creating content feels impossible… I used to spend HOURS thinking about captions, hashtags, hooks, and scripts 😭 Now I just drop a product link and everything is ready. Creators… this changes everything ⚡ #videomaker #scriptgenerator #Tiktokshop #ugccreator #ugc
Hook Mafia

Hook Mafia

0 likes

See more