I have to optimize my website to mobile version. So, should I have to strictly use WML only or can I manage with HTML (xHTML with 240 X 320 or something). I never worked with WML/XML and I have enough knowledge in HTML. Will my website encounter any issues when I use HTML instead of WML?
2
There are 2 best solutions below
0
mdprotacio
On
For compatibility concerns, you may want to use WML but if you prefer to present the end-user with custom pages based on the capabilities it may have, then you may present dynamic contents. Note that not all devices support HTML and CSS capability is very limited.
CHTML is more widely used on mobile than HTML, I suppose.
Related Questions in MOBILE
- Doesn't work TrafficStats.clearThreadStatsTag() in Kotlin
- KeyboardAvoidingView makes a messy the flexbox
- How can I find a lost Samsung Device?
- How can I eliminate or deactivate the white flash that appears when I press a button via a mobile device?
- In MAUI how can I Show different appshell tabbars depending on the user role?
- Why doesn't TrafficStats.clearThreadStatsTag() work in Kotlin?
- How can I create an animation like WhatsApp archive button spawn animation with SwiftUI on watchOS?
- Not showing the widget wrapped with Obx in Android 14
- Is there a way to use Family Link group in my own application?
- Is it viable proxying all my mobile apps requests, to some kind knowing that a request is coming from a secure source
- How can I connect android app to arduino via Bluetooth?
- How to animate calculated position/container height when viewport changes?
- Unnecessary override. Try adding behavior in the overriding member or removing the override
- Selecting an option in the mobile app drop down which is not visible when the app is loaded for the first time
- Getting Real-Time Sensor Data from Smart Watches
Related Questions in MARKUP
- Yolo makes one box for intersecting objects
- How to access the Styles.xaml file and use it in the c# markup code
- I'm having issues linking to a header in the same document with CommonMark, Markdig, MAUI, and Visual Studio 2022?
- Error: while importing 'app', an ImportError was raised: ImportError: cannot import name 'Markup' from 'flask'
- Running Jemdoc on Windows
- Schema Markup Warnings (Teaches, warninghasCourseInstance, warningoffers)
- How do I make my images not go away in HTML after I restart the server
- Google FAQ schema not showing (multiple schema in same page)
- QLPreviewController identify markup mode
- YAML read filenames stored across multiple variables
- How do I set a checkmark in markup?
- How can my XML look like with existing XSD
- Hide specific headings from (python) sphinx toctree while still showing other headings of same depth/level (or deeper)
- Preventing Overwrite of Existing Google Calendar Events with Schema.org Email Markup
- How to mark part of a text as quoted in Telegram sendMessage Bot API?
Related Questions in WML
- symbol used in word is converted to normal text?
- watchman watch run on wml url not working
- How to dynamically make html element get its ID?
- React-native yarn workspaces/wml don't load imported modules that contains an installed package
- Could not connect to ibm WML
- How do I test this WML parser?
- Scala: Regular Expression pattern match with curly braces?
- Server response on oreo via mobile data issue
- HTML alternatives to make website?
- xml to R Attributes
- is it possible to delete wml variable
- UserAgent detection in WML Script
- WIB/WML bytecode conversion
- How to redirect desktop site for wap and SEMC browser to mobile site using php
- How can I use a wml script in php files?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I would use (X)HTML in combination with CSS to optimize the site to a mobile version since nowadays all widely used mobile devices use these two standards. Also it's easier to convert (X)HTML code to HTML5 in the future.
With CSS you can easely use the same HTML for multiple screen sizes like 480x800 and 240x320.