SlideShare a Scribd company logo
H-PaGe
(Home Page Generator)


Svetoslav Nikolov
(http://svetoslavnikolov.wordpress.com)
Background (why)

• The structure of the DTU web pages is quite
  complicated (http://www.oersted.dtu.dk)
• The designer must replicate the menu for
  each web page.
• The idea – keep them separate. The
  designer just writes the content.
What is H-PaGe
• H-PaGe is a program
  for generating
  dynamic web pages.
• Written in PHP.
• Pages do not exist
  physically.
• Created on the fly
  from a specification.
Structure of Ørsted’s Pages
• Pictures:
   – Upper left and right
   – Middle left and right
   – Lower left.
• Menus:
   – Top.
   – Left.
   – Bottom.
• Contents
Structure Of a Web Site

• Here ”web site” means a place to which we
  return when we click on a button ”home”.
  For example Ørsted’s site.
• The personal web sites are located at:
  http://www.oersted.dtu.dk/personal/$USER
Directory Structure
 Each web site has one ROOT DIRECTORY and a
 number of sub-directories


   root_dir            sub_dir_1
                       sub_dir_2
                       sub_dir_3

The ”root_dir” for the personal pages is on the
web server under: /home/$USER/2www/
Create Web Page With H-PaGe

1. Obtain the distribution of H-PaGe.
2. Copy ”index.php” to the root directory, for
   example in ”/home/$user/2www/”.
3. Specify your web site in the file ”web.config”.
   Give color scheme, names of pictures, etc.
   ”web.config” is in the same directory as
   ”index.php”
4. Create the files with the contents for each of the
   web pages in your web site.
What Is ”web.config”?
• ”web.config” is a file with commands to the server
  defining the looks and the structure of the web site.
• ”web.config” is created with a text editor. For example
  Word Pad or NEdit.
• The file looks like this:
 <?
  // This is a comment
  # This is also a comment
  /*This is also a comment*/
  set_style(’green.css’); // This is a command.
 ?>
Define Color Scheme
The color scheme is defined with a command set_style
 <?
      set_style(’name_of_style.css’);
 ?>


Possible options are:
• green.css, red.css, blue.css,
 lila.css, cyan.css, brown.css

These files define not only the colors, but also the font
names, sizes, etc.
Specify Images
 Images are added by the command add_image.
<?
   //add_image(’position’,’file’,’descript’,’link’);
  add_image(’upperright’,’dtu_logo_ur_green.gif’,
            ’DTU’, ’http://www.dtu.dk’);
  add_image(’middleright’,’~/pictures/sn_name.png’,

            ’SN’);
  add_image(’menu_line’,’.pictures/line_blue.gif’);
?>
The Images
upperleft             upperright   (600 x 20)
middleleft                 middleright
(151 x 72)                 (600 x 72)




         menu_line (130 x 3) or (130 x 1)




 lowerleft
(151 x 72)
Create Menus
H-PaGe was initially developed to create the menus
automatically from the directory structure.


/31000 --+-- /Slides
         +-- /Notes                   Home
         +-- /Exam
                                      Slides
                                      Notes
                                      Exam
../31000 contains:
        index.php,
        web.config
Expected Files
In the root directory, say, 31000, it is expected to
have ”index.php”, ”web.config”.
In the rest ot the directories, ”index.php” expects to
find a file with a name ”main.html”, or ”main.htm” or
”main.txt”.


If you make sub-directories, they will appear as
sub-menus.

Only the menu on the left can be created like this.
Other Menus


             top


left




            bottom
Specifying Menus In web.config
Items in the mennu can be added to the web site from
web.config using the command add_menu.

<?
  //add_menu(’position’,’text’,’directory’,’file’)
  // Absolute web address
   add_menu(’top’, ’DTU’, ’http://www.dtu.dk’);
  // Specify only directory
   add_menu(’bottom’, ’Pictures’,’./pictures’);
  // Specify directory and file
   add_menu(’left’,’Links’, ’./’, ’links.html’);
?>
Other Commands
show_updated(’true’);
set_substitute(’true’ | ’false’);
add_bottom_text(’Some text instead of menu’);
set_title(’Some title for the page’);
Some Browser – Title of
page
             http://www.oersted.dtu.dk




                           bottom_text
Last updated: 1 Jan 1970
The Contents
The contents are
simple html files.
Usually their name                          contents
is ”main.html” if
you work with
directory structure.

These files can be created with any editor – text or
web editor. They can even be simple text files
without any HTML formatting.
Things To Remember

• All links are relative to the root directory,
  not to the current file with contents.
• Do not use any formatting on the page like
  ”background color”, ”text color”, etc. The
  CSS files take care of it.
• Make pages as simple as possible.
Let’s Do It !
Simple HTML

• Header1 (title)
  <h1> Some text </h1>
• Header2 (section)
  <h2> Section name</h2>
• Header3 (sub-section)
  <h3>Sub-section name</h3>
Simple HTML

• Link:
  <a href=”http://www.dtu.dk”> DTU </a>
• Itemized list (with bullets):
  <ul>
    <li> Item text </li>
    <li> Item text </li>
  </ul>
Simple HTML

• Enumerated list:
  <ol>
    <li> First item </li>
    <li> Second item </li>
  </ol>
• New paragraph:
  <p> Some text

More Related Content

What's hot

Image upload in php MySql
Image upload in php MySqlImage upload in php MySql
Image upload in php MySql
Ishaq Shinwari
 
Local Drupal MultiSite Set-up
Local Drupal MultiSite Set-upLocal Drupal MultiSite Set-up
Local Drupal MultiSite Set-up
Manuel Felix G. Abejo Jr.
 
Demo lecture ppt
Demo lecture pptDemo lecture ppt
Demo lecture ppt
VidyaGholap2
 
Herodevpres
HerodevpresHerodevpres
Herodevpres
csshero
 
Armsec 2017 | 2 bugs 1 safari
Armsec 2017 | 2 bugs 1 safariArmsec 2017 | 2 bugs 1 safari
Armsec 2017 | 2 bugs 1 safari
Дмитрий Бумов
 
Installing And Configuration for your Wordpress blog
Installing And Configuration for your Wordpress blogInstalling And Configuration for your Wordpress blog
Installing And Configuration for your Wordpress blog
igorgentry
 
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa0602690047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269tutorialsruby
 
Archives hub ead 2010_lesson
Archives hub ead 2010_lessonArchives hub ead 2010_lesson
Archives hub ead 2010_lessonLisa Jeskins
 
Wordpress install setup
Wordpress install setupWordpress install setup
Wordpress install setup
Mohammed Nayeem
 
crtical points for customizing Joomla templates
crtical points for customizing Joomla templatescrtical points for customizing Joomla templates
crtical points for customizing Joomla templates
amit das
 
Drupal 7 database api
Drupal 7 database api Drupal 7 database api
Drupal 7 database api
Andrii Podanenko
 
Htaccess file tutorial and tips
Htaccess file tutorial and tipsHtaccess file tutorial and tips
Htaccess file tutorial and tipsImam Rosidi
 
Drupal module development
Drupal module developmentDrupal module development
Drupal module development
Damjan Cvetan
 
Php File Upload
Php File UploadPhp File Upload
Php File Upload
Hiroaki Kawai
 
Drupal vs WordPress
Drupal vs WordPressDrupal vs WordPress
Drupal vs WordPress
Walter Ebert
 
Technical SEO: .htaccess & 301 Redirects
Technical SEO:  .htaccess & 301 RedirectsTechnical SEO:  .htaccess & 301 Redirects
Technical SEO: .htaccess & 301 Redirects
Rob Bertholf
 
Drupal 8 版型開發變革
Drupal 8 版型開發變革Drupal 8 版型開發變革
Drupal 8 版型開發變革
Chris Wu
 
Steph's Html5 and css presentation
Steph's Html5 and css presentationSteph's Html5 and css presentation
Steph's Html5 and css presentation
stephy123123
 

What's hot (20)

Image upload in php MySql
Image upload in php MySqlImage upload in php MySql
Image upload in php MySql
 
Local Drupal MultiSite Set-up
Local Drupal MultiSite Set-upLocal Drupal MultiSite Set-up
Local Drupal MultiSite Set-up
 
Freeingwebhost
FreeingwebhostFreeingwebhost
Freeingwebhost
 
Demo lecture ppt
Demo lecture pptDemo lecture ppt
Demo lecture ppt
 
Herodevpres
HerodevpresHerodevpres
Herodevpres
 
Armsec 2017 | 2 bugs 1 safari
Armsec 2017 | 2 bugs 1 safariArmsec 2017 | 2 bugs 1 safari
Armsec 2017 | 2 bugs 1 safari
 
Installing And Configuration for your Wordpress blog
Installing And Configuration for your Wordpress blogInstalling And Configuration for your Wordpress blog
Installing And Configuration for your Wordpress blog
 
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa0602690047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
 
Archives hub ead 2010_lesson
Archives hub ead 2010_lessonArchives hub ead 2010_lesson
Archives hub ead 2010_lesson
 
Wordpress install setup
Wordpress install setupWordpress install setup
Wordpress install setup
 
CustomThesis
CustomThesisCustomThesis
CustomThesis
 
crtical points for customizing Joomla templates
crtical points for customizing Joomla templatescrtical points for customizing Joomla templates
crtical points for customizing Joomla templates
 
Drupal 7 database api
Drupal 7 database api Drupal 7 database api
Drupal 7 database api
 
Htaccess file tutorial and tips
Htaccess file tutorial and tipsHtaccess file tutorial and tips
Htaccess file tutorial and tips
 
Drupal module development
Drupal module developmentDrupal module development
Drupal module development
 
Php File Upload
Php File UploadPhp File Upload
Php File Upload
 
Drupal vs WordPress
Drupal vs WordPressDrupal vs WordPress
Drupal vs WordPress
 
Technical SEO: .htaccess & 301 Redirects
Technical SEO:  .htaccess & 301 RedirectsTechnical SEO:  .htaccess & 301 Redirects
Technical SEO: .htaccess & 301 Redirects
 
Drupal 8 版型開發變革
Drupal 8 版型開發變革Drupal 8 版型開發變革
Drupal 8 版型開發變革
 
Steph's Html5 and css presentation
Steph's Html5 and css presentationSteph's Html5 and css presentation
Steph's Html5 and css presentation
 

Viewers also liked

Princeton Luxury Homes sold in 2009
Princeton Luxury Homes sold in 2009Princeton Luxury Homes sold in 2009
Princeton Luxury Homes sold in 2009
Beatrice Bloom
 
Grp Ii
Grp   IiGrp   Ii
Grp Iidevsvg
 
IICTG-Inaugural-v2
IICTG-Inaugural-v2IICTG-Inaugural-v2
IICTG-Inaugural-v2gkchang
 
Darko Lighting Brochure 2009
Darko Lighting Brochure 2009Darko Lighting Brochure 2009
Darko Lighting Brochure 2009
ioniuy
 
Life in 1500 history lesson 1
Life in 1500 history lesson 1Life in 1500 history lesson 1
Life in 1500 history lesson 1jleungml
 
Transducer with non-rectangular elements
Transducer with non-rectangular elementsTransducer with non-rectangular elements
Transducer with non-rectangular elements
Svetoslav Nikolov
 
The Community Of Gaming &amp; Hardware Enthusiasts
The Community Of Gaming &amp; Hardware EnthusiastsThe Community Of Gaming &amp; Hardware Enthusiasts
The Community Of Gaming &amp; Hardware EnthusiastsMark Reed
 
CH.10 DSS Future
CH.10   DSS FutureCH.10   DSS Future
CH.10 DSS Future
Dr. Bashir Al-Debyan
 
65 Linwood Circle Slide
65 Linwood Circle Slide65 Linwood Circle Slide
65 Linwood Circle SlideBeatrice Bloom
 
Autyzm: metody pracy, teoria i praktyka
Autyzm: metody pracy, teoria i praktykaAutyzm: metody pracy, teoria i praktyka
Autyzm: metody pracy, teoria i praktyka
Terapia Dzieci
 
Politica agricola comuna in romania
Politica agricola comuna in romaniaPolitica agricola comuna in romania
Politica agricola comuna in romania
roxanaaj
 

Viewers also liked (15)

Princeton Luxury Homes sold in 2009
Princeton Luxury Homes sold in 2009Princeton Luxury Homes sold in 2009
Princeton Luxury Homes sold in 2009
 
Ch.10 dss future
Ch.10 dss futureCh.10 dss future
Ch.10 dss future
 
Grp Ii
Grp   IiGrp   Ii
Grp Ii
 
IICTG-Inaugural-v2
IICTG-Inaugural-v2IICTG-Inaugural-v2
IICTG-Inaugural-v2
 
Darko Lighting Brochure 2009
Darko Lighting Brochure 2009Darko Lighting Brochure 2009
Darko Lighting Brochure 2009
 
Life in 1500 history lesson 1
Life in 1500 history lesson 1Life in 1500 history lesson 1
Life in 1500 history lesson 1
 
Transducer with non-rectangular elements
Transducer with non-rectangular elementsTransducer with non-rectangular elements
Transducer with non-rectangular elements
 
The Community Of Gaming &amp; Hardware Enthusiasts
The Community Of Gaming &amp; Hardware EnthusiastsThe Community Of Gaming &amp; Hardware Enthusiasts
The Community Of Gaming &amp; Hardware Enthusiasts
 
Listing presentation
Listing presentationListing presentation
Listing presentation
 
CH.10 DSS Future
CH.10   DSS FutureCH.10   DSS Future
CH.10 DSS Future
 
65 Linwood Circle Slide
65 Linwood Circle Slide65 Linwood Circle Slide
65 Linwood Circle Slide
 
Autyzm: metody pracy, teoria i praktyka
Autyzm: metody pracy, teoria i praktykaAutyzm: metody pracy, teoria i praktyka
Autyzm: metody pracy, teoria i praktyka
 
DAMS
DAMSDAMS
DAMS
 
Politica agricola comuna in romania
Politica agricola comuna in romaniaPolitica agricola comuna in romania
Politica agricola comuna in romania
 
Certificates
CertificatesCertificates
Certificates
 

Similar to Hpage

Creating and Deploying Static Sites with Hugo
Creating and Deploying Static Sites with HugoCreating and Deploying Static Sites with Hugo
Creating and Deploying Static Sites with Hugo
Brian Hogan
 
How to create a basic template
How to create a basic templateHow to create a basic template
How to create a basic templatevathur
 
Z04 etano template_basics
Z04 etano template_basicsZ04 etano template_basics
Z04 etano template_basicsDaouni Monsite
 
WordPress Theming 101
WordPress Theming 101WordPress Theming 101
WordPress Theming 101
Zero Point Development
 
Joomla Beginner Template Presentation
Joomla Beginner Template PresentationJoomla Beginner Template Presentation
Joomla Beginner Template Presentation
alledia
 
Artistic Web Applications - Week3 - Part 3
Artistic Web Applications - Week3 - Part 3Artistic Web Applications - Week3 - Part 3
Artistic Web Applications - Week3 - Part 3
Katherine McCurdy-Lapierre, R.G.D.
 
3. tutorial html web desain
3. tutorial html web desain3. tutorial html web desain
3. tutorial html web desainfaizibra
 
Intermediate Web Design
Intermediate Web DesignIntermediate Web Design
Intermediate Web Design
mlincol2
 
Drupal 7 install with modules and themes
Drupal 7 install with modules and themesDrupal 7 install with modules and themes
Drupal 7 install with modules and themesGeshan Manandhar
 
Drupal 7 theme by ayushi infotech
Drupal 7 theme by ayushi infotechDrupal 7 theme by ayushi infotech
Drupal 7 theme by ayushi infotech
Mandakini Kumari
 
Creating Custom Templates for Joomla! 2.5
Creating Custom Templates for Joomla! 2.5Creating Custom Templates for Joomla! 2.5
Creating Custom Templates for Joomla! 2.5
Don Cranford
 
Customizing WordPress Themes
Customizing WordPress ThemesCustomizing WordPress Themes
Customizing WordPress Themes
Laura Hartwig
 
The Way to Theme Enlightenment 2017
The Way to Theme Enlightenment 2017The Way to Theme Enlightenment 2017
The Way to Theme Enlightenment 2017
Amanda Giles
 
Unit 2 (html)
Unit 2  (html)Unit 2  (html)
Unit 2 (html)
manochitra10
 
How to make a WordPress theme
How to make a WordPress themeHow to make a WordPress theme
How to make a WordPress theme
Hardeep Asrani
 
HTML Lists & Llinks
HTML Lists & LlinksHTML Lists & Llinks
HTML Lists & Llinks
Nisa Soomro
 
Joomla Templates101
Joomla Templates101Joomla Templates101
Joomla Templates101
Barb Ackemann
 

Similar to Hpage (20)

Creating and Deploying Static Sites with Hugo
Creating and Deploying Static Sites with HugoCreating and Deploying Static Sites with Hugo
Creating and Deploying Static Sites with Hugo
 
How to create a basic template
How to create a basic templateHow to create a basic template
How to create a basic template
 
Z04 etano template_basics
Z04 etano template_basicsZ04 etano template_basics
Z04 etano template_basics
 
Creating a basic joomla
Creating a basic joomlaCreating a basic joomla
Creating a basic joomla
 
WordPress Theming 101
WordPress Theming 101WordPress Theming 101
WordPress Theming 101
 
Joomla Beginner Template Presentation
Joomla Beginner Template PresentationJoomla Beginner Template Presentation
Joomla Beginner Template Presentation
 
Artistic Web Applications - Week3 - Part 3
Artistic Web Applications - Week3 - Part 3Artistic Web Applications - Week3 - Part 3
Artistic Web Applications - Week3 - Part 3
 
3. tutorial html web desain
3. tutorial html web desain3. tutorial html web desain
3. tutorial html web desain
 
Intermediate Web Design
Intermediate Web DesignIntermediate Web Design
Intermediate Web Design
 
Drupal 7 install with modules and themes
Drupal 7 install with modules and themesDrupal 7 install with modules and themes
Drupal 7 install with modules and themes
 
puissance-2roue
puissance-2rouepuissance-2roue
puissance-2roue
 
Drupal 7 theme by ayushi infotech
Drupal 7 theme by ayushi infotechDrupal 7 theme by ayushi infotech
Drupal 7 theme by ayushi infotech
 
Creating Custom Templates for Joomla! 2.5
Creating Custom Templates for Joomla! 2.5Creating Custom Templates for Joomla! 2.5
Creating Custom Templates for Joomla! 2.5
 
Customizing WordPress Themes
Customizing WordPress ThemesCustomizing WordPress Themes
Customizing WordPress Themes
 
The Way to Theme Enlightenment 2017
The Way to Theme Enlightenment 2017The Way to Theme Enlightenment 2017
The Way to Theme Enlightenment 2017
 
Lecture1and2
Lecture1and2Lecture1and2
Lecture1and2
 
Unit 2 (html)
Unit 2  (html)Unit 2  (html)
Unit 2 (html)
 
How to make a WordPress theme
How to make a WordPress themeHow to make a WordPress theme
How to make a WordPress theme
 
HTML Lists & Llinks
HTML Lists & LlinksHTML Lists & Llinks
HTML Lists & Llinks
 
Joomla Templates101
Joomla Templates101Joomla Templates101
Joomla Templates101
 

Hpage

  • 1. H-PaGe (Home Page Generator) Svetoslav Nikolov (http://svetoslavnikolov.wordpress.com)
  • 2. Background (why) • The structure of the DTU web pages is quite complicated (http://www.oersted.dtu.dk) • The designer must replicate the menu for each web page. • The idea – keep them separate. The designer just writes the content.
  • 3. What is H-PaGe • H-PaGe is a program for generating dynamic web pages. • Written in PHP. • Pages do not exist physically. • Created on the fly from a specification.
  • 4. Structure of Ørsted’s Pages • Pictures: – Upper left and right – Middle left and right – Lower left. • Menus: – Top. – Left. – Bottom. • Contents
  • 5. Structure Of a Web Site • Here ”web site” means a place to which we return when we click on a button ”home”. For example Ørsted’s site. • The personal web sites are located at: http://www.oersted.dtu.dk/personal/$USER
  • 6. Directory Structure Each web site has one ROOT DIRECTORY and a number of sub-directories root_dir sub_dir_1 sub_dir_2 sub_dir_3 The ”root_dir” for the personal pages is on the web server under: /home/$USER/2www/
  • 7. Create Web Page With H-PaGe 1. Obtain the distribution of H-PaGe. 2. Copy ”index.php” to the root directory, for example in ”/home/$user/2www/”. 3. Specify your web site in the file ”web.config”. Give color scheme, names of pictures, etc. ”web.config” is in the same directory as ”index.php” 4. Create the files with the contents for each of the web pages in your web site.
  • 8. What Is ”web.config”? • ”web.config” is a file with commands to the server defining the looks and the structure of the web site. • ”web.config” is created with a text editor. For example Word Pad or NEdit. • The file looks like this: <? // This is a comment # This is also a comment /*This is also a comment*/ set_style(’green.css’); // This is a command. ?>
  • 9. Define Color Scheme The color scheme is defined with a command set_style <? set_style(’name_of_style.css’); ?> Possible options are: • green.css, red.css, blue.css, lila.css, cyan.css, brown.css These files define not only the colors, but also the font names, sizes, etc.
  • 10. Specify Images Images are added by the command add_image. <? //add_image(’position’,’file’,’descript’,’link’); add_image(’upperright’,’dtu_logo_ur_green.gif’, ’DTU’, ’http://www.dtu.dk’); add_image(’middleright’,’~/pictures/sn_name.png’, ’SN’); add_image(’menu_line’,’.pictures/line_blue.gif’); ?>
  • 11. The Images upperleft upperright (600 x 20) middleleft middleright (151 x 72) (600 x 72) menu_line (130 x 3) or (130 x 1) lowerleft (151 x 72)
  • 12. Create Menus H-PaGe was initially developed to create the menus automatically from the directory structure. /31000 --+-- /Slides +-- /Notes Home +-- /Exam Slides Notes Exam ../31000 contains: index.php, web.config
  • 13. Expected Files In the root directory, say, 31000, it is expected to have ”index.php”, ”web.config”. In the rest ot the directories, ”index.php” expects to find a file with a name ”main.html”, or ”main.htm” or ”main.txt”. If you make sub-directories, they will appear as sub-menus. Only the menu on the left can be created like this.
  • 14. Other Menus top left bottom
  • 15. Specifying Menus In web.config Items in the mennu can be added to the web site from web.config using the command add_menu. <? //add_menu(’position’,’text’,’directory’,’file’) // Absolute web address add_menu(’top’, ’DTU’, ’http://www.dtu.dk’); // Specify only directory add_menu(’bottom’, ’Pictures’,’./pictures’); // Specify directory and file add_menu(’left’,’Links’, ’./’, ’links.html’); ?>
  • 16. Other Commands show_updated(’true’); set_substitute(’true’ | ’false’); add_bottom_text(’Some text instead of menu’); set_title(’Some title for the page’); Some Browser – Title of page http://www.oersted.dtu.dk bottom_text Last updated: 1 Jan 1970
  • 17. The Contents The contents are simple html files. Usually their name contents is ”main.html” if you work with directory structure. These files can be created with any editor – text or web editor. They can even be simple text files without any HTML formatting.
  • 18. Things To Remember • All links are relative to the root directory, not to the current file with contents. • Do not use any formatting on the page like ”background color”, ”text color”, etc. The CSS files take care of it. • Make pages as simple as possible.
  • 20. Simple HTML • Header1 (title) <h1> Some text </h1> • Header2 (section) <h2> Section name</h2> • Header3 (sub-section) <h3>Sub-section name</h3>
  • 21. Simple HTML • Link: <a href=”http://www.dtu.dk”> DTU </a> • Itemized list (with bullets): <ul> <li> Item text </li> <li> Item text </li> </ul>
  • 22. Simple HTML • Enumerated list: <ol> <li> First item </li> <li> Second item </li> </ol> • New paragraph: <p> Some text