[UP]


Manual Reference Pages  - h_open (3)

NAME

h_open(3f) - [M_html] open an HTML file (LICENSE:PD)

CONTENTS

Synopsis
Description
Options
Example
Author
License

SYNOPSIS

subroutine h_open(iounit)

   integer,intent(in) :: iounit
   character(len=*),intent(in) :: filename

DESCRIPTION

Open an HTML output file and then Write out
      <html>
      <head>
      <title>FILENAME </title>
      </head>
      <body>

OPTIONS

lun The unit number to open
filename
  Name of the file to open

EXAMPLE

Sample program

   program demo_h_open
   use M_html
   implicit none
   real    :: arr(10,20)=0.0
   integer :: io=20
   integer :: i,j
   do i=1,10
      do j=1,20
         arr(i,j)=(i-1)*20+j
      enddo
   enddo
   call h_open(io,’table.html’)
   call h_array(io,arr)
   call h_close(io)

end program demo_h_open

AUTHOR

John S. Urban

LICENSE

Public Domain


h_open (3) March 11, 2021
Generated by manServer 1.08 from f14221cd-254f-445b-866d-097e47692660 using man macros.