html+css+js-web designer,html5

🇺🇸 United States
XiaoWen Huang  | 
60
ASO score
Text
70/100
Reviews
50/100
Graphic
60/100
Other
0/100
rating
App Rating
4.5
rating
Votes
3.3K
rating
App Age
11y 3m
rating
Last Update
Sep 09, 2025
rating
iAP
$0.99 - 0.99

Compare with Category Top Apps

Metrics
Current App
Category Top Average
Difference
Rating
4.52
4.68
-3%
Number of Ratings (Voted)
3.2K
3.2M
-100%
App Age
11y 2m
7y 8m
+46%
In-app Purchases Price
$1
$67
-98 %
Update Frequency
77d
28d
+174%
Title Length
30
23
+30%
Subtitle Length
30
28
+7%
Description Length
1 794
3 048
-41%
Number of Screenshots
1366
1339
+2 %
Size
34MB
276MB
-88 %

Category Ranking in United States

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

Ranking Keywords in United States

Keywords App Rank
Illustration
Analyze this and other apps using Asolytics tools

Text ASO

Title (
Characters: 30 of 30
)
html+css+js-web designer,html5
Subtitle (
Characters: 30 of 30
)
A good helper for learning web
Description (
Characters: 1794 of 4000
)
This is a learning tool for efficient HTML, CSS, and JS learning, fast programming, local execution, Git retrieval, iCloud storage, efficient transfer and sharing via LAN HTTP/FTP multi-point connections. (^.^) It aspires to help you who want to learn, develop, and improve! !!!(^.^) (^.^) Read a variety of learning materials at your leisure and run examples while learning, making it easy to understand and efficient. (^.^) Use code templates, autocomplate, auto-indentation, code coloring, symbol completion, a symbol keyboard, text search, multi-file search, multi-line indentation, and multi-line comments to make development more convenient. (^.^) Access iCloud easily and synchronize across multiple devices for efficient collaboration. (^.^) Retrieve source code projects from GitHub with Git. (^.^) Efficiently transfer files via LAN or Bluetooth connections via HTTP/FTP multi-point connections. (^.^) Find learning materials easily through the built-in browser. Simply select code in the built-in browser to run it. (^.^) Open file formats like txt, pdf, chm, mp3, m4v, zip, gif, png, html, py, doc, etc. easily through the file system. (^.^) Adjust code color, font size, and line spacing for a more comfortable reading experience. (^.^) Customize background images and colors, text color and shadow, text font, text size, background animation, interface transition animation, the number and order of tabs on the main interface to create your own personalized learning software. (^.^) Generate QR codes for HTML, CSS, and JS scripts and learning materials, and scan them to access them. (^.^) Share HTML, CSS, and JS scripts and learning materials via email, Weibo, Twitter, and Facebook. Code templates - The contents of a new file will copy the contents of the code template.}
Read more

Visual ASO

Screenshots

Rating & Reviews

Reviews Overview
🧐 Coming Soon…
Rating
4.5
3 301 voters

Some Latest Reviews

Hyleran
10 Nov, 2025
5
This app lets me program no matter where I am, it’s very easy to use, and lets me work no matter where I am! The editor is very user friendly and it’s very intuitive, especially with its predictive text!
Farlight Melhore
19 Sep, 2025
5
É um bom aplicativo para quem procura desenvolver em html
ayoko bga123
12 Sep, 2025
3
I just started don't know much about this. Join us you might like it. Tell you more about it in a while. Let me try it first
燏枫
05 Jul, 2025
1
你看看你这,HTML教程的web server,这玩意保守都千禧年的。你看看,我挑点坑 “如果要运行“真正”的网站,您不得不购买强大的服务器硬件。不要指望低价的 PC 能够应付这些工作”,VPS呢?被你吃了? “软件支出 请记住,服务器授权通常比客户端授权更昂贵。同时请注意,服务器授权也许有用户数量限制。 ” 开源软件呢?也被你吃了?合着NginxApache全都完全收费的是吧? 还有,云计算呢?容器化呢?CDN呢? 还有你这内容,一看就机器翻译,语气僵硬、用词不自然、上下文不连贯,微软式中文? 反正自带的教程别看,一看就搬运的,自己到网上搜不香吗
Mr._whose_the_boss
07 May, 2025
5
It seems to be a Great app so far with very less intrusive paywalls
AxD5000
06 May, 2025
2
I cant visualize the console log, I have an iphone 6 with ios 12.5.7
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()

Other

Additional Information
Rating:
4.54
Voted: 3.3K
App Store Link:
Website:
Email: -
Privacy Policy:
Categories: Productivity, Education
Size: 33MB
iAP: 0.99 - 0.99 $
App Age: 11 years 3 months
Release Date: Sep 24, 2014
Last Update: Sep 09, 2025
Version: 3.1
Version history
3.1
Sep 09, 2025
1. Added Git download in the file system, and other Git features will be improved in the future. 2. Add folder multi file content search 3. iPad IDE mode supports drag to control the interface size. 4. Redesign the file system.
3.0
Aug 23, 2025
1. Added Git download in the file system, and other Git features will be improved in the future. 2. iPad IDE mode supports drag to control the interface size.
Version history