glennpm has asked for the wisdom of the Perl Monks concerning the following question:
I'm using Bootstrap code that is embedded in a template and I got it to work in a standalone simple .HTM file, but I'm trying to "embed" the following lines of code in a perl script so that I can make the text boxes, buttons and tables mobile enabled. Does any guru know how to put these lines in an existing perl script and maybe give me a sample of what will work? I tried a few things that didn't work.
THE FOLLOWING WORKS in HTML; NEED TO KNOW HOW TO PUT SAME LINES IN A PERL SCRIPT
<head> <meta name="viewport" content="width=device-width, initial-scale=1, +maximum-scale=1"> <link type="text/css" rel="stylesheet" href="../hideo/bootstrap/css/ +bootstrap.min.css"> <link href='http://fonts.googleapis.com/css?family=Arvo' rel='styles +heet' type='text/css'> <link type="text/css" rel="stylesheet" href="../hideo/font-icons/cus +tom-icons/css/custom-icons.css"> <link type="text/css" rel="stylesheet" href="../hideo/css/layout.css +"> <link type="text/css" id="colors" rel="stylesheet" href="../hideo/cs +s/colors.css"> <link type="text/css" rel="stylesheet" href="../hideo/css/custom.css +"> <!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/tr +unk/html5.js"></script><![endif]--> <script src="hideo/js/modernizr-2.6.1.min.js"></script> <link rel="shortcut icon" href="../hideo/images/favicon.ico"> <link rel="apple-touch-icon" href="../hideo/images/apple-touch-icon. +png"> <link rel="apple-touch-icon" sizes="72x72" href="../hideo/images/app +le-touch-icon-72x72.png"> <link rel="apple-touch-icon" sizes="114x114" href="../hideo/images/a +pple-touch-icon-114x114.png"> <link rel="apple-touch-icon" sizes="144x144" href="../hideo/images/a +pple-touch-icon-144x144.png"> </head>
<body> <!-- RIGHT AFTER <body> TAG --> <script type="text/javascript" src="../hideo/js-plugin/jquery/jquery +-1.10.2.min.js"></script> <script type="text/javascript" src="../hideo/JQuery/jquery.cycle.all +.2.74.js"></script> <!-- JUST BEFORE </body> TAG --> <script type="text/javascript" src="../hideo/bootstrap/js/bootstrap. +js"></script> <script type="text/javascript" src="../hideo/js/custom.js"></script> </body>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How To Use Bootstrap Code in Perl Script?
by tangent (Parson) on Feb 16, 2016 at 02:37 UTC | |
|
Re: How To Use Bootstrap Code in Perl Script?
by golux (Chaplain) on Feb 16, 2016 at 02:43 UTC | |
|
Re: How To Use Bootstrap Code in Perl Script?
by Hadrianus (Novice) on Feb 16, 2016 at 01:48 UTC | |
|
Re: How To Use Bootstrap Code in Perl Script?
by jcb (Parson) on Feb 16, 2016 at 00:53 UTC | |
|
Re: How To Use Bootstrap Code in Perl Script?
by Anonymous Monk on Feb 15, 2016 at 22:25 UTC | |
|
Re: How To Use Bootstrap Code in Perl Script?
by NetWallah (Canon) on Feb 16, 2016 at 18:13 UTC | |
|
Re: How To Use Bootstrap Code in Perl Script?
by poj (Abbot) on Feb 16, 2016 at 13:42 UTC |