473,398 Members | 2,393 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

broken css on web

I am new at html/css. My code runs fine locally. However, the css breaks when run on web.I have used the zurb foundation. Please let me know the error.

Expand|Select|Wrap|Line Numbers
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html>
  3.    <head>
  4.       <title>
  5.       </title>
  6.    </head>
  7.    <body>
  8.       <html class="no-js" lang="en">
  9.          <head>
  10.             <meta charset="utf-8" />
  11.             <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  12.             <title>Parkify</title>
  13.             <link type="text/css" rel="stylesheet" href="css/normalize.css" />
  14.             <link type="text/css" rel="stylesheet" href="css/foundation.min.css" />
  15.             <link type="text/css" rel="stylesheet" href="css/font-awesome.min.css"/>
  16.             <link type="text/css" rel="stylesheet" href="css/global.css" />
  17.             <script type="text/javascript" src="js/vendor/modernizr.js"></script>
  18.             <script type="text/javascript" src="js/vendor/jquery.js"></script>
  19.             <script type="text/javascript" src="js/foundation.min.js"></script>
  20.             <script type="text/javascript" src="js/global.js"></script>
  21.             <style>
  22.                .top-bar{
  23.                background-color: #3399FF;
  24.                height: 60px;
  25.                position: relative;
  26.                }
  27.                #logo{
  28.                position: relative;
  29.                margin-top: 5px;
  30.                max-width: 100%;
  31.                max-height:100%; 
  32.                }
  33.             </style>
  34.          </head>
  35.          <body class="welcome">
  36.             <nav class="top-bar">
  37.                <!--<section class="left-small">
  38.                   <a class="left-off-canvas-toggle menu-icon" ><span></span></a>
  39.                   </section>-->
  40.                <section class="left tab-bar-section">
  41.                   <img id="logo" src="img/parkify.png"></img>
  42.                </section>
  43.             </nav>
  44.             <div class="row collapse full-height">
  45.             <div class="small-12 columns">
  46.                <div class="row login">
  47.                   <div class="small-12 columns">
  48.                      <div class="row">
  49.                         <div class="small-12 columns">
  50.                            <a href="home.html" class="button">
  51.                            <img class="fb" src="img/fb.png" alt="Login with facebook"/>&nbsp;&nbsp;|&nbsp;&nbsp;Login with facebook
  52.                            </a>
  53.                         </div>
  54.                      </div>
  55.                      <div class="row">
  56.                         <div class="small-12 columns sep or">
  57.                            <div class="row collapse">
  58.                               <div class="small-5 columns">
  59.                                  <hr />
  60.                               </div>
  61.                               <div class="small-2 columns">
  62.                                  <span>or</span>
  63.                               </div>
  64.                               <div class="small-5 columns">
  65.                                  <hr />
  66.                               </div>
  67.                            </div>
  68.                         </div>
  69.                      </div>
  70.                      <div class="row register">
  71.                         <div class="small-12 columns">
  72.                            <form method="post" action=".">
  73.                               <input type='hidden' name='csrfmiddlewaretoken' value='yc0FxDJY2dJRm26iW4gtL0XLnEXHwmzs' />
  74.                               <div class="row collapse">
  75.                                  <div class="small-12 columns">
  76.                                     <div class="row collapse">
  77.                                        <div class="small-3 columns">
  78.                                           <label for="id_mobile_no" class="inline">Mobile No.</label>
  79.                                        </div>
  80.                                        <div class="small-9 columns">
  81.                                           <input type="text"  name="mobile_no" id="right-label">
  82.                                        </div>
  83.                                     </div>
  84.                                  </div>
  85.                                  <div class="row collapse">
  86.                                     <div class="small-12 columns">
  87.                                        <div class="row collapse">
  88.                                           <div class="small-3 columns">
  89.                                              <label for="id_password" class="inline">Password</label>
  90.                                           </div>
  91.                                           <div class="small-9 columns">
  92.                                              <input type="password" name="password" id="right-label">
  93.                                           </div>
  94.                                        </div>
  95.                                     </div>
  96.                                     <div class="row">
  97.                                        <div class="small-12 columns submit">
  98.                                           <button type="submit">Login <i class="fa fa-angle-double-right"></i></button>
  99.                                           <input type="hidden" name="next" value="/home" />
  100.                                        </div>
  101.                                     </div>
  102.                                  </div>
  103.                                  <a href="/register">Register</a>    
  104.                               </div>
  105.                            </form>
  106.                         </div>
  107.                      </div>
  108.                   </div>
  109.                </div>
  110.             </div>
  111.             <script type="text/javascript">
  112.                $(document).foundation();
  113.             </script>
  114.          </body>
  115.          </body>
  116.       </html>
  117.  
Attached Images
File Type: png fb.png (1.8 KB, 85 views)
File Type: jpg parkify.jpg (44.0 KB, 88 views)
Jul 15 '15 #1
0 2750

Sign in to post your reply or Sign up for a free account.

Similar topics

2
by: Frank de Bot | last post by:
Hi, occasionaly I find in my apache logs that fastcgi had a broken pipe error with php running as fastcgi. the logs are like this: -- > (32)Broken pipe: > FastCGI: comm with server...
2
by: Nigel King | last post by:
I have a problem with the logging module. It reports a Broken Pipe error after outputing to the log file occasionally (5%). This does not appear to happen on Mac OSX using current finked python...
2
by: Dicky Cheng | last post by:
Hi, I am using .net remoting technology. I set up a .net remoting client and server in IIS. When the client calls the server, the server will run a long duration method (30-60seconds). I have a...
205
by: Jeremy Siek | last post by:
CALL FOR PAPERS/PARTICIPATION C++, Boost, and the Future of C++ Libraries Workshop at OOPSLA October 24-28, 2004 Vancouver, British Columbia, Canada http://tinyurl.com/4n5pf Submissions
1
by: talyabn | last post by:
Hi, I'm trying to invoke the 'Broken Hyperlinks' option in the FrontPage application. The problem is that I get all the links in a given HTML page instead of getting only the broken links. ...
7
by: Jacob | last post by:
Has anybody else encountered a problem when running your asp.net applications off your localhost and having broken image links? The weird thing is, the links aren't really broken. The reference...
4
by: tt40 | last post by:
Anyone know how to prevent Access 2002 from automatically breaking all the incorrect joins in a query and then automatically saving the broken query? This is what I would call stupid design...
64
by: groups | last post by:
C# is an impressive language...but it seems to have one big limitation that, from a C++ background, seems unacceptable. Here's the problem: I have a third-party Document class. (This means I...
25
by: Norman Diamond | last post by:
I think the current version of _vsnwprintf_s is broken, in ordinary Windows. I'm not completely sure yet but it looks like this breakage is worse than previously known Windows CE breakage of...
8
by: Steven D'Aprano | last post by:
According to the Python docs, once an iterator raises StopIteration, it should continue to raise StopIteration forever. Iterators that fail to behave in this fashion are deemed to be "broken": ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.