Jump to content

Search the Community

Showing results for tags 'HTML'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • W3Schools
    • General
    • Suggestions
    • Critiques
  • HTML Forums
    • HTML/XHTML
    • CSS
  • Browser Scripting
    • JavaScript
    • VBScript
  • Server Scripting
    • Web Servers
    • Version Control
    • SQL
    • ASP
    • PHP
    • .NET
    • ColdFusion
    • Java/JSP/J2EE
    • CGI
  • XML Forums
    • XML
    • XSLT/XSL-FO
    • Schema
    • Web Services
  • Multimedia
    • Multimedia
    • FLASH

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Languages

  1. Hello; This is the first time I have posted to this forum. I have been developing javascript and php in web related context for some time. But there is always some detail that gets solved at some point, but solution is buried in old code somewhere. I am currently trying to get javascript to set a hidden field from the selection a user makes from a set of radio buttons. I have googled around and found some reference an a clue in "current value" but that won't fly in javascript, and the actual syntax was not provided...... SO: here is some code var closeSAOOpt = function() { var opt = document.forms.script.openOpt.currentValue alert(opt) } alert in code above produces "undefined". I know one of the radios is checked. I have varified that openOpt is in fact the radio group name and that it is assigned to both radio button name values. I know the document.forms.script is defined, and that javascript won't accept spaces in variable names. So I have assumed 'current value' is currentValue in javascrip But what "undefined" is referring to is often not obvious. The funtion above is called in an eventlistener attached to a button element labeled "Done" Can I get a hand with this from someone? Thank you for time and attention.
  2. Hello guys, I am new to html and I'm currently trying to create a signup form (name, e-mail, tel no) - it is for a corporate site and when a person goes through it successfully, I want it to show a table with resources about the company that they can download directly. I have a code for the form and table, I also tried to put "onclick show" effect in the "submit" button which is at the end of the signup form but I cannot connect it to the table. What is the code for that? Thank you! This is what I have so far: <html><head><title>(Type a title for your page here)</title><style type="text/css">div {position: center;left: 200px;top: 400px;background-color: #ffffff;width: 250px;padding: 20px;color: black;border: #0000cc;display: none;}</style><script language="JavaScript">function setVisibility(id, visibility) {document.getElementById(id).style.display = visibility;}</script></head><body><input type=button name=type value='Submit' onclick="setVisibility('sub3', 'inline');";><div id="sub3"><table style="width:100%"> <tr> <td><h4>Title<h4></td> <td><h4>Description<h4></td> <td><h4>Size<h4></td> <td><h4>Download<h4></td> </tr> <tr> <td>Panelbook</td> <td>JTN proprietary online panels in 21 countries</td> <td>627 KB</td> <td><a href="FILENAME" target="_blank">Download</a></td> </tr> <tr> <td>CAWI Metodology</td><td>Advantages, Convenience and Best results </td><td> 1,240 KB </td><td><a href="FILENAME" target="_blank">Download</a></td></tr><tr> <td> Data Quality Checks </td><td> Tracking and checking to deliver high-quality data </td><td> 1,250 KB </td><td><a href="FILENAME" target="_blank">Download</a></td></tr><tr><td> Testimonials </td><td> See how we helped our customers </td><td> ? KB </td><td><a href="FILENAME" target="_blank">Download</a></td> </tr><tr><td> t </td> </tr></table></div></body></html> edit--codeblock added
  3. <head> <script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script> <script type="text/javascript" src="jquery.isotope.js"></script> </head> <div class="container"> <div class="categories"> <ul class="cat"> <li class="pull-left"><h4>PHOTOS</h4></li> <li class="pull-right"> <ol class="type"> <li><a href="#" data-filter="*" class="active">ALL</a></li> <li><a href="#" data-filter=".childhood">CHILDHOOD</a></li> <li><a href="#" data-filter=".concerts">CONCERTS</a></li> </ol> </li> </ul> <div class="clearfix"></div> </div> <div id="lightbox" class="row"> <div class="col-md-4 childhood"> <div class="portfolio-item"> <img src="img/photos/childhood/img5.jpg" class="img-responsive" alt="Childhood Images "> </div> </div> <div class="col-md-4 childhood"> <div class="portfolio-item"> <img src="img/photos/childhood/img2.jpg" class="img-responsive" alt="Childhood Images "/> </div> </div> <div class="col-md-4 childhood"> <div class="portfolio-item"> <img src="img/photos/childhood/img3.jpg" class="img-responsive" alt="Childhood Images /> </div> <div class="col-md-4 concerts"> <div class="portfolio-item"> <img src="img/photos/concerts/img1.jpg" class="img-responsive" alt="Concert Images"> </div> </div> <div class="col-md-4 concerts"> <div class="portfolio-item"> <img src="img/photos/concerts/img1.jpg" class="img-responsive" alt="Concert Images"> </div> </div> </div> </div> <script type="text/javascript"> $(window).load(function() { var $container = $('#lightbox'); $container.isotope({ filter: '*', animationOptions: { duration: 750, easing: 'linear', queue: false } }); $('.cat a').click(function() { $('.cat .active').removeClass('active'); $(this).addClass('active'); var selector = $(this).attr('data-filter'); $container.isotope({ filter: selector, animationOptions: { duration: 750, easing: 'linear', queue: false } }); return false; }); }); </script> </body> </html> I am using bootstrap and for the image gallery filtering i'm using jquery.isotope.js.This perfectly works in chrome and images are rersponsive.But in IE and firefox,images will not be responsive when window is smaller than 760px.Tried a lot.If I make it responsive ie.smartresize fn,then flitering does not work.Also tried new version of isotope.Then filtering doesn't work,images stay responsive. How to resolve the problem?Pl someone help me...
  4. It seems like I have been trying to display HTML img images and not very sure of the proper syntax. "HOW TO MAKE IMAGE NOT A BACKGROUND IMAGE BUT A PHOTO FOCAL POINT" "PROBLEM IS HOW TO PROPERLY INSERT A IMAGE. WHAT IS THE BEST WAY. AND WHERE TO ADD ATTRIBUTES OF THE FILE.", there must be several ways some tend to overlap and Is that ok good or bad? seems that I have to enter the style in HTML file after the img for it to take? I have been getting mixed results over some times, It seems to me that there is many ways to do everything. there is different way to achieve images in html I think I get confused because of css and the image-position and various selectors,like img or is it better to have it in a div element. or CSS having a URL to display the image like this |img { background-image: url=("")? What is the best way to have elements that are active images. ** what is the most universal excepted and accurately displayed method of sizeing images??** ---≥ example (size of width="10"; or width:10; or width="10px, or width:10px; or width=10% or ? what is the always excepted method? I keep on refferring to tutorials and refferences and I get different methods of HTML <img> and I cannot seem to get the most common and most workable what I would call the "best way to do this". Please if you will help? thankyou
  5. Hello, I'm working to create a website where you have three images side by side. I would like to justify through three align an image on a div. I have created a class, but on the one page he does this and on other page aligns he doesn't matter. My question is: can anyone advise me how I can fix this that the three be aligned the same images on all pages? Thanks in advance. page 1 here is aligned:<div id="box4"><h2>Gebouwen</h2><p class="right"><img src="images/gebouwen/image1.jpg" width="250" alt="text"><img src="images/gebouwen/image.jpg" width="250" alt="text"><img src="images/gebouwen/image3.jpg" width="250" alt="text"><img src="images/gebouwen/image3.jpg" width="250" alt="text"></p></div>page 2 here is not aligned:<div id="box4"><h2>Musea</h2><p class="right"><img src="images/musea/image4.JPG" width="250" alt="text"><img src="images/musea/image5.jpg" width="250" alt="text"><img src="images/musea/imagr6.jpg" width="250" alt="text"></p></div> My css is:.right{margin: 30px;text-align: justify;}div#box4{width: 1000px;background-color: #660000;float: left;}
  6. I love the way W3Schools provides "Browser Support" information for HTML and CSS references! That feature has been invaluable as the development projects I'm on move to HTML 5. The move to HTML 5 is also including a better focus on Web Content Accessibility. Over the last year or so I've started to wish that you had a similar support feature with respect to Screen Readers. I know that this gets complicated very quickly due to the fact that most screen readers operate on particular OS's, and in conjunction with whatever browser (and browser version) the user prefers, but still a very basic matrix could be very useful. Some suggested Screen Reader + OS + Browser combinations: JAWS on Windows 7 with Chrome NVDA on Windows 7 with IE11 JAWS on Window 8 with IE11 JAWS on Windows 10 with Edge VoiceOver on Apple OSX with Safari VoiceOver on Apple OSX with Chrome VoiceOver on iOS with Safari TalkBack on Android 5.0 with Chrome I generated my list by choosing the most popular OS's, browsers and Screen Readers (I'll cite my sources if that becomes an issue). My list is obviously lacking any mention of Firefox which should probably be squeezed in somewhere. Do a few, do them all, add in whatever other configurations you happen to test - any additional info you could add would be great! I know this is a huge wishlist item, but it would assist many people in making better choices for producing web content that is accessible across the broadest range of technology.
  7. guys i need your help. .a {width:500px; height:300px; overflow-x:hidden; overflow-y:auto; } i have a div which shows messages like facebook. i want to open the page with overflow-y but it wont up it will show end of div. Scroll should be down when page opens.
  8. Hello. I'm currently developing an app in the Intel XDK for my local high school. One of the features I would like to add is something where school administrators (such as the athletic director) can login and then submit data into an HTML5 form, which is then submitted to a server and stored in a database. Then, after it is stored, I would like the information to be able to be viewed by regular users of the app, in something such as an HTML page. THe purpose of this would be for the school admins to submit scores from the games such as football, etc. My question is, how do I setup the server (im assuming would run PHP) to be able to store the submitted data, and then would edit an HTML page to include the new text? Any help is appreciated! Thanks!
  9. I'm developing a website for an organization,i want to encrypt my source code when i see in webpage..could you tell anyone how to do it? Thank you in advance,
  10. Okay, so I'm trying to use: http://codyhouse.co/gem/3d-rotating-navigation/ but the text from my nav bar and buttons appear above it when I scroll down.. https://gyazo.com/fdb218e18dbe364635fd9652c693eaaa https://gyazo.com/f26263256f2a0e55488150d9ff008b10 Anybody know hot to fix this? :3 Thanks
  11. im trying to output a json file to an expandable tree using html and jquery. its working, but the nesting and nodes within the tree are misplaced. any idea what that is? for example. mainstation 2 is coming out as a child of mainstation 1, while they should be siblings. it should be a logic error html code:<!DOCTYPE html><html> <head> <meta charset="UTF-8" /> <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $.ajax({ url: "converted39.json", dataType: 'json', success: function(tree) { traverse($('#treeView'), tree) $('#treeView li:has(li)').addClass("Max").click(function(e) { $(this).toggleClass("Max Min"); $(this).children("ul").toggle(); e.stopPropagation(); }) $("[href]").addClass("Blue").click(function(e){ $(this).toggleClass("Purple"); e.stopPropagation(); window.location.href = $(this).attr("href") }) $('#treeView li').click(function(g) { var mytree2 = $(this); mytree2.children('li').toggle(); g.stopPropagation(); }) } }) }); function traverse(node, o) { for (var i in o) { if(i == "__text" || i == "_href" ) continue; if (o !== null && typeof(o)=="object") { if(o.__text){ var ul = $("<ul>").appendTo(node) var node=$('<li>').appendTo(ul) if(o._href){ var n = $("<span>").appendTo(node) $(n).text(o.__text).attr("href", o._href) } else{ $(node).text(o.__text) } } } traverse(node,o); } else{ var ul = $("<ul>").appendTo(node) if(o.__text){ var li = $('<li>' + o._text + '</li>').appendTo(ul) if(o._href){ var n = $("<span>").appendTo(node) $(n).text(o.__text).attr("href", o._href) } }else{ $('<li>' + o + '</li>').appendTo(ul) } } } } </script> JSON CODE:{ "MAIN": { "MainStation": [ { "Substation": [ { "Control": "Control1n", "ControlExpandable": { "MiniControl": [ "MiniControl1", "MiniControl2" ], "__text": "Control2" }, "PushButton": { "__text": "PushButton1", "_attr": "successnDatffffffffffffffffffffffffffffffffffffffffffffffffffffffffe:17july" }, "_href": "http://google.com", "__text": " Substation1nnnnnnn" }, { "ControlExpandable": { "MiniControl": [ "MiniControl1", "MiniControl2" ], "__text": "Control1", "_attr": "Control1 woohoo" }, "Control": "Control2", "PushButton": "PushButton1", "__text": " Substation2nnnnnnn" }, { "Control": [ "Control1", "Control2", "Control3", "Control4" ], "__text": " Substation3nnnnnnnnn" }, { "PushButton": [ "PushButton1", "PushButton2" ], "__text": " Substation4nnnnn" } ], "__text": " Mainstation1nnnnnnnnn" }, { "Substation": [ { "Control": [ "Control1", "Control2" ], "PushButton": "PushButton1", "__text": " Substation1nnnnnnn" }, { "ControlExpandable": { "MiniControl": [ "MiniControl1", "MiniControl2" ], "__text": "Control1" }, "Control": "Control2", "PushButtonExpandable": { "MiniPushButton": [ "MiniPushButton1", "MiniPushButton2" ], "__text": "PushButton1" }, "__text": " Substation2nnnnnnn" } ], "__text": " Mainstation2nnnnn" } ], "ElectricStation": { "Substation": [ { "Control": [ "Control1", "Control2" ], "PushButton": "PushButton1", "__text": " Substation1nnnnnnn" }, { "ControlExpandable": { "MiniControl": [ "MiniControl1", "MiniControl2" ], "__text": "Control1" }, "Control": "Control2", "PushButtonExpandable": { "MiniPushButton": [ "MiniPushButton1", "MiniPushButton2" ], "__text": "PushButton1" }, "__text": " Substation2nnnnnnn" } ], "__text": " ElectricStation1nnnnn" }, "__text": " MAINnnnnnnn" }}
  12. Hello, How can test website load traffic, more explain(how many number of users enter at the same time in website) without website down very thanks.
  13. Please look at the code: in this line: line#42reactionTime = (clickedTime - startTime)/1000; all browsers are saying that startTime is not defined :/ any help will be appreciated <!doctype html><html><head> <title>Learning JavaScript</title> <meta charset="utf-8" /> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style type = "text/css"> #simpleBox{ width:200px; height:200px; background-color:red; display:none; } </style></head><body> <div id = "simpleBox"></div> <script type = "text/javascript"> function makeBox() { var clickedTime; var startTime; var reactionTime; var x = Math.random(); x = x*5000; setTimeout(function (){ document.getElementById("simpleBox").style.display = "block"; startTime = Date.now(); }, x); } document.getElementById("simpleBox").onclick = function (){ clickedTime = Date.now(); reactionTime = (clickedTime - startTime)/1000; alert(reactionTime); this.style.display = "none"; makeBox(); } makeBox(); </script></body></html>
  14. hi! i'm new to HTML but i can programme with c,j2EE and JS , i want to know if there is a way to run my code in an html page, (i mean doing an application inside the HTML page);
  15. Hello Internet, I'm having an issue with how Safari is rendering a picture on my smartphone - but not chrome. Any thoughts on why this is happening? Please attached image.
  16. I am trying to use fancybox with filter and that is working fine. But there is a problem with waypoints: When I am scrolling down there appears a red border on the rightside. In this border there should fadein a vertical text-image when this border reaches the top of the viewport. This all works fine. At the end the text image should fadeOut when the red border ends. This works well untill the fancybox filter is used (and the fancybox page is getting smaller). When the filter is used the text image won't fadeOut, I think because it doesn't reach the waypoint. The waypoint is set to "bottom in view" on the page where the contact slider is located. Could anyone tell me why the waypoint isn't moving up when the filter is used and how I can solve this? A link to the side is: http://main-site.nl/peter/ Thanx
  17. Hi, I 'built' a website a while ago . I 'built' it using a template. It is only 5 pages so every time I needed to edit something in the footer I would just go through each page and edit it. I am going to be building a slightly larger website soon (20 pages). What is the best way to set it up so I can easily edit the menu items or the footer on every page in one go? As far as I can tell the templates on w3layouts don't have anything built in to their templates to do this? Is the best way to just use wordpress or something instead? Is there a way to do it with html/css? Also, i would appreciate feedback on the website above. Thank you.
  18. Hello. I am a newbie and suggestions would be greatly appreciated. I am redesigning a page within a Dreamweaver template. There are CSS stylesheets and JavaScript attached which is part of branding standards. There are many changes that I would like to make but I am having to comment out elements since the template is for the entire website. I am not allowed to completely change the header or the footer ( I asked our webmaster). Is there a way to override the template header and insert my own navbar while retaining the other presets? Next, I am having trouble with my div box alignment. I want to create div boxes for my left column, middle content, and a few right column boxes. I thought I could use display: inline as a quick fix, but my boxes are aligning vertically. I am trying to amend the current CSS sheets without having to create a new one. Last, my scrolling marquee is not centered. I had a bear of a time sorting through someone else's awful JavaScript but it is still off. Kind of frustrated with guessing. I am attaching files for the code and main css sheets. I am guessing that one of the CSS sheets is overriding the changes I want to make. But I do not know enough to find where. I know this is mostly about my struggle with Dreamweaver. I hope I posted in the right forum. Many thanks in advance! default.html layout.css CSSMenu_library2.css
  19. I can't seem to get the last slide to go back to the first slide. I also have a problem when clicking on previous slide the next slide goes below the current slide for a second. If anyone has any suggestions it would be much appreciated. Unfortunately don't have the site uploaded so here's the code: var main = function() { $('.next-arrow').click (function() { var currentSlide = $('.active-slide'); var nextSlide = currentSlide.next(); var currentDot = $('.active-dot'); var nextDot = currentDot.next(); if(nextSlide.length == 0) { nextSlide = $('.slide').first(); nextDot = $('.dot').first(); }; currentDot.removeClass('active-dot'); nextDot.addClass('active-dot'); currentSlide.fadeOut(500).removeClass('active-slide'); nextSlide.fadeIn(500).addClass('active-slide'); }); $('.prev-arrow').click(function() { var currentSlide = $('.active-slide'); var prevSlide = currentSlide.prev(); var currentDot = $('.active-dot'); var prevDot = currentDot.prev(); if(prevSlide.length == 0) { nextSlide = $('.slide').last(); nextDot = $('.active-dot').last(); }; currentDot.removeClass('active-dot'); prevDot.addClass('active-dot'); currentSlide.fadeOut(500).removeClass('active-slide'); prevSlide.fadeIn(500).addClass('active-slide'); }); }; <div class="carousel"> <div class="slide active-slide"> <div class="pic"> <img src="pic1.png" width="1000" height="360"> <div class="carousel-text"> <h1>Welcome to the Shabby to Chic Workshop.</h1> </div> </div> </div> <div class="slide"> <div class="pic"> <img src="pic2.png" width="1000" height="360"> <div class="carousel-text"> <h1>We make custom furmiture.</h1> </div> </div> </div> <div class="slide"> <div class="pic"> <img src="pic3.png" width="1000" height="360"> <div class="carousel-text"> <h1>Come visit us today!</h1> </div> </div> </div> <div class="s-bar"> <a href="#" class="prev-arrow"><img src="la.png" width="20" height="40"></a> <ul class="s-dots"> <li class="dot active-dot"><img src="dot.png" width="10" height="40"></li> <li class="dot"><img src="dot.png" width="10" height="40"></li> <li class="dot"><img src="dot.png" width="10" height="40"></li> </ul> <a href="#" class="next-arrow"><img src="ra.png" width="20" height="40"></a> </div> </div> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script><script type="text/javascript" src="main.js"></script> .s-bar { text-align: center; position: relative; background-color: transparent;}.s-dots { list-style: none; display: inline-block; padding: 0; margin: 0;}.s-dots > li { list-style: none; display: inline;}.active-dot { opacity: 0.5;}.prev-arrow, .next-arrow { width: 20px; height: 40px;}.carousel-text { font-family: 'Dancing Script', cursive; text-align: left; font-size: 1.8em; color: #ffffff; position: absolute; left: 30px; top: 30px;}.slide { display: none; background: transparent; position: absolute; top: 80; left: 50%; ; width: 1000px; height: 360px;}.active-slide { left: 0; display: block; position: relative; text-align: center; margin-left: auto; margin-right: auto; width: 1000px; height: 360px; z-index: -1; }
  20. hello! I have just started learning about html, css and all that stuff.. I am beginning to get an understanding.. But there is something that really annoys me! This is used to automatic retrieve post title, link and content.. but how?? I would like to have a featured image+some text on my first page, instead of the whole post! ${ } <div class="entry"> <h2> <a href="${EntryCategoryLink}">${EntryTitle}</a> </h2> <div class="content">${entrybody}</div>
  21. I am trying to make a website that follows the rulles of Google insights. Most of the time it works fine, but yesterday I found out, by watching the website on my daughters phone, that it doesn't display well on Android 4.4.2 and an older iPod it looks like that the style.css ( that should load after the html and a small part of the more important CSS have been loaded ) is not loading. On a Android 5 or iPad it looks just fine. Her is the code I have been using to delay the loading: <script type="text/javascript"> var cb = function() { var l = document.createElement('link'); l.rel = 'stylesheet'; l.href = 'css/style.css'; var h = document.getElementsByTagName('head')[0]; h.parentNode.insertBefore(l, h); }; var raf = requestAnimationFrame || mozRequestAnimationFrame || webkitRequestAnimationFrame || msRequestAnimationFrame; if (raf) raf(cb); else window.addEventListener('load', cb); </script> Here is a link to the site I am talking about: http://main-site.nl/
  22. i found this script online: http://stackoverflow.com/questions/8022353/how-to-populate-html-dropdown-list-with-values-from-database <?php $conn = new mysqli('localhost', 'username', 'password', 'database') or die ('Cannot connect to db'); $result = $conn->query("select id, name from table"); echo "<html>"; echo "<body>"; echo "<select name='id'>"; while ($row = $result->fetch_assoc()) { unset($id, $name); $id = $row['id']; $name = $row['name']; echo '<option value="'.$id.'">'.$name.'</option>'; } echo "</select>"; echo "</body>"; echo "</html>"; ?> But what I want is to get the table names from the database. Does anyone know how?
  23. Hello everyone Anyone can help me i want show mysql records on .html page so plz tell me how i done and 2nd i m creat a sms submit form for user using text area but when i creat view.php page for show sms then show sms in one line of all text from sms so how i can do plz help me
  24. I am testing my website with Google's PageSpeed Insights. But I can't figger out what to do or how to do this. When I am correct I have to put the most elementary css in-line so the first page can be loaded to be displayed a.s.a.p., The rest of the css should as google says be placed after the closing body tag. But first when I do that I get in conflict with https://validator.w3.org/ ( they want me to have css in the head section ) and how do I know what css is so important that I have to place it in-line to make things properly? Searching on the internet I found: http://jonassebastianohlsson.com/criticalpathcssgenerator/, but I have changed the absolute paths of the images and the clearing floats to .cd-container::after { content: ''; display: table; clear: both;} and I still get an error. I found things like criticalCSS/filamentgroup, critical by addyosmani or penthouse by pocketjoso and the seem to do the job but I am pretty new with these things an can't figger out what is the best way to handel this. Could someone tell me what is the best way to approach this matter and where I can find how to do this ( explained in an easy way so I can understand this ). The last days I have been searching, the haystack is growing and the needle is schrinking. The website is displayed at http://main-site.nl/ Thanks
  25. I am building my first web site using HTML, CSS, and Bootstrap. After extensive searching, I can’t get my HTML file to link with my CSS file. The HTML document and CSS document are in the same domain so there shouldn’t be any reason to mention a file in the code, but my CSS isn’t affecting the HTML when I load it in Chrome. Any help would be greatly appreciated. I have enjoyed learning how to make a website, but this is hampering my progress/enjoyment. Below is some of the code (most comes from the Bootstrap site with minor customization). <head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1"><!--[if lt IE 9]><script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script><script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script><![endif]--> <title>TruNord</title><link href=“GOOGLE FONT PAGE” rel=“stylesheet” /><link href=“css/bootstrap.min.css” rel=“stylesheet” /><link href=“main.css” type=“text/css” rel=“stylesheet” /></head>
×
×
  • Create New...