rebol [
  title: "basic face"
  author: 'vpavlu
  home: http://plain.at/vpavlu
]

f: make face [
    size: 250x120
  text: "titlebar"
  offset: 20x20
  pane: make face [
    size: 250x120
    text: "make face []"
  ]
]

f/pane/font/size: 22
f/pane/font/valign: 'middle
f/pane/font/name: "courier new"

view f