Success!
We received your request and we'll contact you shortly 😊

html+css+js-web designer,html5

🇺🇸 United States
XiaoWen Huang  | 
43
ASO score
Text
36/100
Reviews
50/100
Graphic
60/100
Other
0/100
rating
App Rating
4.6
rating
Votes
3.07K
rating
App Age
10y 6m
rating
Last Update
Feb 19, 2025
rating
iAP
$0.99 - 0.99

Compare with Category Top Apps

Metrics
Current App
Category Top Average
Difference
Rating
4.54
4.66
-3%
Number of Ratings (Voted)
2.9K
2.5M
-100%
App Age
10y 5m
7y 6m
+39%
In-app Purchases Price
$1
$56
-97 %
Update Frequency
21d
25d
-16%
Title Length
30
23
+30%
Subtitle Length
30
28
+7%
Description Length
1 277
2 926
-56%
Number of Screenshots
6
7
-15 %
Size
31MB
225MB
-86 %

Category Ranking in United States

All
New
Trending Up
Trending Down
Top Mar 05, 2025 Mar 12, 2025
No results were found!
Top Mar 05, 2025 Mar 12, 2025
No results were found!
Top Mar 05, 2025 Mar 12, 2025
No results were found!
Top Mar 05, 2025 Mar 12, 2025
No results were found!

Ranking Keywords in United States

Keywords App Rank
css
out out
html coding
1
html editor
out out
web design
6
html
out out
web inspector
out out
html viewer
out out
Illustration
Analyze this and other apps using Asolytics tools

Text ASO

Title (
Characters: 30 of 30
)
html+css+js-web designer,html5
Subtitle (
Characters: 0 of 30
)
Description (
Characters: 1277 of 4000
)
This is a html,css,javascript programming language learning app,you can learn,write,share html,css,javascript code. Features : Autocomplate. Auto Indent. Code color. Horizontal screen development. Code templates,the contents of the new file is copy from contents of the template file. *You can enter html,css,javascript code by keyboard. *You can adjust the code color and font size , and support to move the cursor left and right and up and down , easy to read and write. *You can find learning materials by the built-in browser . *You can save html,css,javascript code and learning materials, and can be modified to the save file and delete the save file . *The file system supports txt, pdf, chm, mp3,m4v,zip, gif, png, html, py ,doc... *You can control the background image and color, background animation, text color and shadow, switch interface animation , the number and the order of the main interface of the tab bar to create your learning software. *You can Learn html,css,javascript knowledge , the system provides some basic learning materials . *You can use html,css,javascript code or learning materials to generate two-dimensional code , for easy sharing . *You can share code by Email,Weibo,Twitter,Facebook. *You can use the counter,light in the Setting tab.}
Read more

Visual ASO

Screenshots

Rating & Reviews

Reviews Overview
🧐 Coming Soon…
Rating
4.6
3 066 voters

Some Latest Reviews

1234jkjkauzha
28 Feb, 2025
5
I think there’s a bug and it’s bothering me sm. I put the code right but it always shows the wrong one when I play it ( kinda like that). Anyways I hope you guys will fix this bug vey quick because I need it sm.
RosieRoe87
06 Feb, 2025
5
Could use easier to read plain text stating at least what does what to the individual like myself whom are to be considered “coding for dummies!” Someone should make an app called that .. wait I should do it .
محمد رسول مجيد
03 Feb, 2025
5
import pygame import time import random # تهيئة pygame pygame.init() # الألوان white = (255, 255, 255) yellow = (255, 255, 102) black = (0, 0, 0) red = (213, 50, 80) green = (0, 255, 0) blue = (50, 153, 213) # حجم النافذة width = 600 height = 400 # إنشاء النافذة window = pygame.display.set_mode((width, height)) pygame.display.set_caption('لعبة الثعبان') # الساعة clock = pygame.time.Clock() # حجم الثعبان وسرعته snake_block = 10 snake_speed = 15 # خط لعرض النقاط font_style = pygame.font.SysFont("bahnschrift", 25) score_font = pygame.font.SysFont("comicsansms", 35) # دالة لعرض النقاط def Your_score(score): value = score_font.render("النقاط: " + str(score), True, yellow) window.blit(value, [0, 0]) # دالة لرسم الثعبان def our_snake(snake_block, snake_list): for x in snake_list: pygame.draw.rect(window, black, [x[0], x[1], snake_block, snake_block]) # دالة لعرض الرسائل def message(msg, color): mesg = font_style.render(msg, True, color) window.blit(mesg, [width / 6, height / 3]) # دالة اللعبة الرئيسية def gameLoop(): game_over = False game_close = False x1 = width / 2 y1 = height / 2 x1_change = 0 y1_change = 0 snake_List = [] Length_of_snake = 1 foodx = round(random.randrange(0, width - snake_block) / 10.0) * 10.0 foody = round(random.randrange(0, height - snake_block) / 10.0) * 10.0 while not game_over: while game_close == True: window.fill(blue) message("لقد خسرت! اضغط Q-للخروج أو C-للعب مرة أخرى", red) Your_score(Length_of_snake - 1) pygame.display.update() for event in pygame.event.get(): if event.type == pygame.KEYDOWN: if event.key == pygame.K_q: game_over = True game_close = False if event.key == pygame.K_c: gameLoop() for event in pygame.event.get(): if event.type == pygame.QUIT: game_over = True if event.type == pygame.KEYDOWN: if event.key == pygame.K_LEFT: x1_change = -snake_block y1_change = 0 elif event.key == pygame.K_RIGHT: x1_change = snake_block y1_change = 0 elif event.key == pygame.K_UP: y1_change = -snake_block x1_change = 0 elif event.key == pygame.K_DOWN: y1_change = snake_block x1_change = 0 if x1 >= width or x1 < 0 or y1 >= height or y1 < 0: game_close = True x1 += x1_change y1 += y1_change window.fill(blue) pygame.draw.rect(window, green, [foodx, foody, snake_block, snake_block]) snake_Head = [] snake_Head.append(x1) snake_Head.append(y1) snake_List.append(snake_Head) if len(snake_List) > Length_of_snake: del snake_List[0] for x in snake_List[:-1]: if x == snake_Head: game_close = True our_snake(snake_block, snake_List) Your_score(Length_of_snake - 1) pygame.display.update() if x1 == foodx and y1 == foody: foodx = round(random.randrange(0, width - snake_block) / 10.0) * 10.0 foody = round(random.randrange(0, height - snake_block) / 10.0) * 10.0 Length_of_snake += 1 clock.tick(snake_speed) pygame.quit() quit() # تشغيل اللعبة gameLoop()
Rast$$$$
26 Jan, 2025
5
Download this app and your life will change for good
himynameispaty
29 Dec, 2024
5
i have never seen anything like this before, very good!
SmallPeen94
26 Dec, 2024
5
And this actually interrupted me purchasing it 💵🤝🧐
ivanagoras
16 Nov, 2024
5
Excellent, I work with SVG and I have had no problems, thanks
llşdğdçcçc
16 Nov, 2024
5
Başlıkta yazdığı gibi 7 yaşındayım.Ve bana blok kodlar sıkıcı olduğu için iki tane program yükledim biri için kaydolmam gerekiyordu.İkincisinde pro versiyon olduğu için kodlarımın sonucunu göremiyordum.Ama sizin programınızda hiç bunun gibi sorun yok.Ve benim bildiğim bir sitede sonucumu görebiliyorum.O site WWWschools.
Corey gross
06 Nov, 2024
5
This app looks to be very helpful for writing code. Not sure how it’ll help with my Kroger and MKUltra problem.

Other

Additional Information
Rating:
4.55
Voted: 3.07K
App Store Link:
Website:
Email: -
Privacy Policy:
Categories: Productivity, Education
Size: 30MB
iAP: 0.99 - 0.99 $
App Age: 10 years 6 months
Release Date: Sep 24, 2014
Last Update: Feb 19, 2025
Version: 2.8
Version history
2.8
Feb 19, 2025
Optimize and improve multiple functions
2.7
Oct 25, 2022
Fix known problems.
Version history