/    Sign up×
Community /Pin to ProfileBookmark

Programs for generating HTML forms

Good afternoon. Please, tell us the names of programs, for the formation of HTML forms.
Or someone can help, in writing simple user forms with a minimal design.
In advance I thank for answers.

to post a comment

1 Comments(s)

Copy linkTweet thisAlerts:
@cootheadJun 18.2018 — Hi there 22coders,

I would fully recommend that you use a text editor such as [url=https://notepad-plus-plus.org/][color=#069]Notepad++[/color][/url] or [url=https://www.sublimetext.com/][color=#069]Sublime Text[/color][/url],

with your existing keyboard and as many pinkies that you can safely manipulate.

Here is a basic table layout...

``<i>
</i>&lt;!DOCTYPE HTML&gt;
&lt;html lang="en"&gt;
&lt;head&gt;

&lt;meta charset="utf-8"&gt;
&lt;meta name="viewport" content="width=device-width,height=device-height,initial-scale=1"&gt;

&lt;title&gt;untitled document&lt;/title&gt;

&lt;link rel="stylesheet" href="screen.css" media="screen"&gt;

&lt;style media="screen"&gt;
body {
background-color: #f9f9f9;
font: 100% / 162% verdana, arial, helvetica, sans-serif;
}
#persons {
margin: auto;
border-collapse: collapse;
background-color: #fff;
box-shadow: 0.3em 0.3em 0.3em rgba( 0, 0, 0, 0.4 );
}
#persons caption {
text-transform: uppercase;
}
#persons th, #persons td {
padding: 0.25em 0.5em;
border: 1px solid #999;
}
#persons th {
background-color: #ccc;
}
#persons tr:nth-child( odd ){
background-color: #fee;
}
#persons tr:nth-child( even ){
background-color: #eef;
}
&lt;/style&gt;

&lt;/head&gt;
&lt;body&gt;

&lt;table id="persons"&gt;
&lt;caption&gt;Persons and their Residence:&lt;/caption&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th scope="col"&gt;Last Name&lt;/th&gt;
&lt;th scope="col"&gt;First Name&lt;/th&gt;
&lt;th scope="col"&gt;City&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Ralph Waldo&lt;/td&gt;
&lt;td&gt;Emerson&lt;/td&gt;
&lt;td&gt;Boston&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Jean-Paul&lt;/td&gt;
&lt;td&gt;Sartre&lt;/td&gt;
&lt;td&gt;Paris&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;David&lt;/td&gt;
&lt;td&gt;Hume&lt;/td&gt;
&lt;td&gt;Edinborough&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;Socrates&lt;/td&gt;
&lt;td&gt;Athens&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;

&lt;/body&gt;
&lt;/html&gt;<i>
</i>
``


_coothead_
×

Success!

Help @22coders spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 4.18,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...