Search found 2 matches
- 06 May 2018 12:31
- Forum: DOS Batch Forum
- Topic: Help with basic Hello.html script
- Replies: 3
- Views: 2958
Re: Help with basic Hello.html script
Thanks Steffen, sorry about those Rookie mistakes,just one thing how do I get "Hello" and "name" to change color and font size, right now only Hello is changing font size and only the name is changing. I can see why that is, I have been trying to move ^<span style='color:%color%'^> to the right plac...
- 05 May 2018 19:35
- Forum: DOS Batch Forum
- Topic: Help with basic Hello.html script
- Replies: 3
- Views: 2958
Help with basic Hello.html script
@echo off echo What name do you want to display? set /p name= echo Your name is %name%! echo What color red, green or blue? set /p color= echo You chose %color% echo What font size do you want? set /p fontsize = echo You chose %fontsize%pt as fontsize set "html=^<html^> ^<body^> ^<p^> ^<span style=...