How I create HTML forms on Mac

Asked By 30 points N/A Posted on -
qa-featured

 

Hi, I am using Mac operating system on my laptop. I want to create HTML forms on Mac but I can’t, can anyone give me some suggestion how I can do that?

Thanks!

SHARE
Best Answer by Johnny Mrmarshall
Answered By 50 points N/A #173082

How I create HTML forms on Mac

qa-featured

 

How to create an HTML document in Mac (OSX)
 
1. Create a new TextEdit document. 
2. Add this code: 
<html> 
<body> 
<p> Hello World!</p> 
</body> 
</html> 
3. Select 'format' -> 'make plain text' 
4. Select 'File' -> 'save as' 
5. Save the file as: 'test.html' 
6. You will be asked if you want to use '.html' … do that.  
Best Answer
Best Answer
Answered By 0 points N/A #173084

How I create HTML forms on Mac

qa-featured

Hello Pamela Gonzalez,

You can create HTML forms by using HTML coding.

First, open a new Text document.
Then, write and HTML code as you wish, following the HTML rules. You must open a <> tag and end a </> tag.

Suppose you use the following tags:
<Html>
<Head>
My First HTML Page </Head>
<Body>

<p> Yes!
I can. </p>

</Body>
</Html>

Then, select them in a plain Text format file.

Then, use the “save” option.

Save it with your preferred name, but it must have the .Html format.

Then, open it.

Now, you will see it opened in a web browser.
Now you are able to make an html form.

Related Questions