quick html question (1 Viewer)

Loz#1

"03'er"
Joined
May 15, 2003
Messages
4,466
Location
Sydney
Gender
Female
HSC
2003
what's the code to change the font style? all i need is a simple answer.

1, 2, 3...go.
 

Loz#1

"03'er"
Joined
May 15, 2003
Messages
4,466
Location
Sydney
Gender
Female
HSC
2003
I'm using HTML for livejournal and had a mental blank, but thank you Adrian.
 

Adrian.

Member
Joined
Jul 7, 2004
Messages
378
Location
Newcastle
Gender
Male
HSC
2005
HTML:
<input type="text" />
Note: this on its own is useless, you'll need to tell the form to do something with the entered data.
 

MedNez

:o>---<
Joined
Aug 21, 2004
Messages
3,004
Gender
Male
HSC
N/A
You should also note, without the "Form" tag, all elements are useless.

@ Adrian , that's an input field, not a selection list, which is the following:

Code:
<form name="form1" method="post" action="">
  <select name="select" size="1">
    <option selected>my option 1</option>
<option selected>my option 2</option>
  </select>
</form>
 
Last edited:

Adrian.

Member
Joined
Jul 7, 2004
Messages
378
Location
Newcastle
Gender
Male
HSC
2005
MedNez said:
@ Adrian , that's an input field, not a selection list, which is the following:
I think the screenshot is of an input field, just a funny shaped one.
 

Users Who Are Viewing This Thread (Users: 0, Guests: 1)

Top