Results 1 to 3 of 3

Thread: HTML recipe

  1. #1
    Join Date
    Feb 2015
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default HTML recipe

    I wanna take a recipe i have and make it into a HTML webpage. My problem is i dont know how. Someone told me about HTML tags. The recipe is below, i wanna add these HTML tags, so that way when i click it and it pops up its viewed as a webpage.... Any help would be great.
    Last edited by Beverleyh; 02-09-2015 at 07:59 AM. Reason: Recipe removed

  2. #2
    Join Date
    Jul 2008
    Location
    Derbyshire, UK
    Posts
    3,033
    Thanks
    25
    Thanked 599 Times in 575 Posts
    Blog Entries
    40

    Default

    There isn't really a need to post the recipe/method in the forum so I have removed it from your post.

    Assuming that you have somewhere to host your web page, and that you just want help with standalone web page creation and formatting, try KompoZer http://www.kompozer.net/ It is a visual editor so you can type into it like Word. You can also create hyperlinks to other web page documents (the html tags that link web pages together on the web). To find out more information about using hyperlinks, please refer to Google.

    If you need further help, please provide more information about your project.
    Focus on Function Web Design
    Fast Edit (A flat file, PHP web page editor & CMS. Small, FREE, no database!) | Fast Edit BE (Snippet Manager) (Web content editor for multiple editable regions!) | Fast Apps

  3. #3
    Join Date
    Nov 2006
    Location
    chertsey, a small town 25 miles south west of london, england.
    Posts
    1,920
    Thanks
    2
    Thanked 267 Times in 262 Posts

    Default

    Hi there tarnold4,

    and a warm welcome to these forums.

    you can see an example of a web page recipe, that I made for someone a little while ago, here...


    This is the HTML...
    Code:
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
    
    <meta charset="utf-8">
    
    <title>Michel Roux's Apple Tart</title>
    
    <link rel="stylesheet"  href="css/page.css">
    
    </head>
    <body>
    
    <h1>Michel Roux's Apple Tart</h1>
    
    <div id="ingredients">
    
    <h3>Ingredients:</h3>
    
    <h4>For the tart</h4>
    
    <ul>
     <li> 200g/7oz ready-made <a href="http://www.bbc.co.uk/food/puff_pastry">puff pastry</a></li>
     <li>2 tbsp stewed apple, or apple <a href="http://www.bbc.co.uk/food/compote">compôte</a></li>
     <li>6 <a href="http://www.bbc.co.uk/food/apple">apples</a> (Cox or Granny Smith), peeled, quartered and cored</li>
     <li>2 tbsp <a href="http://www.bbc.co.uk/food/caster_sugar">caster sugar</a></li>
     <li>40g/1½oz <a href="http://www.bbc.co.uk/food/butter">butter</a>, cubed</li>
     <li>1 free-range <a href="http://www.bbc.co.uk/food/egg_yolk">egg yolk</a>, beaten</li>
    </ul>
    
    <h4>For the Chantilly cream</h4>
    
    <ul>
     <li>250ml/9fl oz <a href="http://www.bbc.co.uk/food/double_cream">double cream</a></li>
     <li>1 tbsp <a href="http://www.bbc.co.uk/food/icing_sugar">icing sugar</a></li>
     <li>1 <a href="http://www.bbc.co.uk/food/vanilla_pod">vanilla pod</a>, seeds scraped out</li>
    </ul>
    
    <h4>To serve</h4>
    
    <ul>
     <li>splash <a href="http://www.bbc.co.uk/food/calvados">calvados</a></li>
    </ul>
    
    </div>
    
    <div id="vid-container">
    
    <video controls>
      <source src="../videos/apple-tart.webm" type="video/webm">
      <source src="../videos/apple-tart.mp4" type="video/mp4">
    </video>
    
    </div>
    
    <div id="method">
    
    <h3>Method:</h3>
    
    <ol>
     <li>Preheat the oven to 200C/400F/Gas 6.</li>
     <li>Roll the puff pastry out on a clean work surface to a large sheet, 3mm thick.</li>
     <li>Using a bowl or plate, cut a circle about 25cm/10in in diameter.</li>
     <li>Crimp the edge before turning the whole sheet over and laying it directly onto a flat baking tray.</li>
     <li>Chill in the fridge for at least 10 minutes.</li>
     <li>Remove the pastry from the fridge and spread the apple compôte all over the base of pastry, leaving a 1cm/½in border at the edge.</li>
     <li>Slice the apples the thickness of a two-pound coin and place them onto the pastry sheet, fanning them out, starting from the outside and working in.</li>
     <li>The apples should overlap each other.</li>
     <li>Use the largest slices on the outside and place the smallest slices in the middle of the tart.</li>
     <li>Once all the apples have been laid out, sprinkle over the caster sugar and dot with the cubed butter.</li>
     <li>Brush the border with the beaten egg and bake in the oven for about 30 minutes, or until golden-brown and risen around the edge.</li>
     <li>For the Chantilly cream, whisk the cream, icing sugar and seeds from the vanilla pod in a bowl until very soft peaks form and set aside until ready to serve.</li>
     <li>When ready to serve, place the tart onto a serving plate. Warm the calvados in a small saucepan.</li>
     <li>Ignite the alcohol with a match (be careful of your fingers) and pour over the tart.</li>
     <li>Serve with Chantilly cream.
    </ol>
    
    </div>
    
    </body>
    </html>
    
    Nothing too complicated there.

    And this is the CSS...
    Code:
    
    body {
        margin:10px;
        padding:20px;
        background-color:#fc9;
        font-size:1em;
        color:#420;
        box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
     }
    #ingredients {
        float:left;
        width:440px;
        margin-right:20px;
     }
    #vid-container {
        float:left;
        width:540px; 
        margin-top:20px;
        border:3px double #000;
        box-shadow:10px 10px 10px rgba(0,0,0,0.5);
     }
    #vid-container video {
        display:block;
        width:100%;
     }
    #method {
        clear:both;
     }
    ul,ol {
        font-size:0.75em;
     }
    a {
        color:#000080;
     }
    @media screen and (max-width:1075px) {
    h1 {
        text-align:center;
     }
    #vid-container {
        float:none;
        clear:both;
        width:80%;
        margin:20px auto;
      }
     }
    @media screen and (max-width:620px) {
    #ingredients {
        float:none;
        width:auto;
        margin-right:0;
      }
     }
    @media screen and (max-width:430px) {
    body {
        margin:4px;
        padding:8px;
        font-size:0.8em;
        box-shadow:inset 0 0 8px rgba(0,0,0,0.8);
      }
     }

    coothead

Similar Threads

  1. Replies: 1
    Last Post: 07-25-2014, 11:28 PM
  2. Replies: 1
    Last Post: 06-07-2011, 04:21 AM
  3. code for recipe
    By gordon in forum Looking for such a script or service
    Replies: 0
    Last Post: 03-15-2007, 09:55 PM
  4. HTML Gallery - Need Javascript for HTML Array
    By LisaA in forum JavaScript
    Replies: 7
    Last Post: 08-12-2006, 04:35 PM
  5. HTML File or HTML Document?
    By djm in forum HTML
    Replies: 10
    Last Post: 08-02-2005, 02:30 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •