path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
docs/yuidoc-p5-theme-src/scripts/tpl/itemEnd.html | chelliah/p5.js-sound | <p>
<div class="meta">
<% if (item.class) { %>
<p>Class:
<strong><a href='#/<%=item.class%>'><%=item.class%></a></strong></p>
<% } %>
</div>
<a style="border-bottom:none !important;" href="http://creativecommons.org/licenses/by-nc-sa/4.0/" target=_blank><img src="http://i.creativecommons.org... |
tests/wpt/web-platform-tests/conformance-checkers/html-aria/accessible-name-updates/719.html | peterjoel/servo | <!DOCTYPE html>
<html>
<head>
<title>ARIA 1.0 Test Case 719</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<h1>ARIA 1.0 Test Case 719</h1>
<div id="TEST_ID_1">
</div>
<h2>Description</h2>
<p>The aria-live attribute is added to an e... |
wts/tests/canvas/w3c/2d.gradient.object.return.html | hgl888/web-testing-service | <!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
<title>Canvas test: 2d.gradient.object.return</title>
<meta name="author" content="Philip Taylor">
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script src="comm... |
www/components/paper-item/paper-item-shared-styles.html | goje87/bsafe-cap | <!--
@license
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http:/... |
libs/widgets/address.html | ryeskelton/uvduvnh | <address>
{{ <%- value %>.street1 }}<br/>
{% if <%- value %>.street2 %}{{ <%- value %>.street2 }}<br/>{% endif %}
{{ <%- value %>.city }}, {{ <%- value %>.state }}. {{ <%- value %>.country }} {{ <%- value %>.zip }}
</address>
|
third_party/blink/web_tests/fast/css/scrollbar-crash.html | nwjs/chromium.src | <style>
:horizontal {}
:vertical {}
:double-button {}
:single-button {}
:no-button {}
:corner-present {}
:increment {}
:decrement {}
:start {}
:end {}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
<p>When scrollbar related pseudo types are specified, ASSERT should not be triggered.</p>... |
test/three.js-master/examples/webgl_buffergeometry_drawcalls.html | perryuwang/perryuwang.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<title>three.js webgl - buffergeometry - lines drawcalls</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
color: #cccccc;
font-family:Monospace;
font-s... |
third_party/blink/web_tests/fast/backgrounds/size/backgroundSize04.html | scheib/chromium | <head>
<style>
body {
background-image:url(resources/bikes.bmp);
-webkit-background-size: 100%;
}
</style>
</head>
<body>
</body> |
third_party/blink/web_tests/external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-2h.html | scheib/chromium | <!doctype html>
<meta charset=utf-8>
<title>Test that body's style margin takes precedence over everything else in quirks mode</title>
<link rel=match href="body-margin-2-ref.html">
<iframe marginheight="20" src="data:text/html,<body marginheight='30' topmargin='40' bottommargin='50' style='margin-top: 100px; margin-bo... |
wwwroot/assets/js/gauge.js/assets/prettify.css | krasnyuk/e-liquid-MS | /* Pretty printing styles. Used with prettify.js. */
/* Vim sunburst theme by David Leibovic */
pre .str, code .str { color: #65B042; } /* string - green */
pre .kwd, code .kwd { color: #E28964; } /* keyword - dark pink */
pre .com, code .com { color: #AEAEAE; font-style: italic; } /* comment - gray */
pre .typ, code... |
web/peoplefinder/static/contrib/jtable/themes/metro/darkorange/jtable.css | nextgis/peoplefinder | /* jTable metro style theme - Dark orange
* Created by Halil İbrahim Kalkan
* http://www.jtable.org
*/
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 300;
src: local('Open Sans Light'), local('OpenSans-Light'), url(http://themes.googleusercontent.com/static/fonts/opensans/v6/DXI1ORH... |
webmail/plugins/enigma/skins/classic/templates/keyinfo.html | ArcherSys/ArcherSys | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><roundcube:object name="pagetitle" /></title>
<roundcube:include file="/includes/links.html" />
<link rel="stylesheet" type="text/css" href=... |
www/node_modules/angular-material/modules/js/sticky/sticky.css | vignaesh01/ascendas-bikepass-checking-alerts | /*!
* AngularJS Material Design
* https://github.com/angular/material
* @license MIT
* v1.1.4
*/
.md-sticky-clone {
z-index: 2;
top: 0;
left: 0;
right: 0;
position: absolute !important;
-webkit-transform: translate3d(-9999px, -9999px, 0);
transform: translate3d(-9999px, -9999px, 0); }
.md-s... |
src/main/resources/inspectionDescriptions/EqualsHashCodeCalledOnUrl.html | Yihy/resources_cn | <html>
<body>
Reports <b>.equals()</b> or
<b>.hashCode()</b> being called
on <b>java.net.URL</b> objects. This can cause performance
problems because those methods uses a DNS lookup
to determine the equality of two <b>java.net.URL</b> objects.
Depending on the availability of the network and the speed of the DNS server... |
tests/wpt/web-platform-tests/offscreen-canvas/compositing/2d.composite.operation.clear.html | vwvww/servo | <!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
<title>OffscreenCanvas test: 2d.composite.operation.clear</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/canvas-tests.js"></script>
<h1>2d.comp... |
www/sites/all/themes/omega/omega/css/modules/field_ui/field_ui.admin.css | sgurlt/drupal-sandbox | /**
* @file
* Stylesheet for the Field UI module.
*/
/**
*'Manage fields' and 'Manage display' overviews.
*/
.field-ui-overview {
/* Add New Row */
/* Hidden Messages */
}
.field-ui-overview .add-new td {
vertical-align: top;
}
.field-ui-overview .add-new .label-input {
float: left;
/* LTR */
}
.field-ui... |
external/chromium_org/chrome/browser/resources/chromeos/login/oobe_screen_autolaunch.html | s20121035/rk3288_android5.1_repo | <div class="step hidden no-logo" id="autolaunch" hidden>
<div class="step-contents">
<div id="autolaunch-warning-title" i18n-content="autolaunchTitle"></div>
<div id="autolaunch-app-container">
<img id="autolaunch-app-icon" alt="">
<div id="autolaunch-app-name"></div>
</div>
<div id="aut... |
tests/wpt/web-platform-tests/FileAPI/blob/Blob-slice.html | cgar/servo | <!DOCTYPE html>
<meta charset=utf-8>
<title>Blob slice</title>
<link rel=help href="https://w3c.github.io/FileAPI/#slice-method-algo">
<link rel=author title="Saurabh Anand" href="mailto:saurabhanandiit@gmail.com">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>... |
ajax/libs/timelinejs/2.28.1/css/themes/font/NixieOne-Ledger.css | MisatoTremor/cdnjs | /*
TimelineJS - ver. 2.28.1 - 2014-01-09
Copyright (c) 2012-2013 Northwestern University
a project of the Northwestern University Knight Lab, originally created by Zach Wise
https://github.com/NUKnightLab/TimelineJS
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.... |
third_party/web_platform_tests/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html | youtube/cobalt | <!DOCTYPE html>
<!-- DO NOT EDIT! Generated by referrer-policy/generic/tools/generate.py using referrer-policy/generic/template/test.release.html.template. -->
<html>
<head>
<title>Referrer-Policy: Referrer Policy is not explicitly defined</title>
<meta name="description" content="Check that sub-resource gets... |
ajax/libs/semantic-ui/1.6.3/components/sticky.css | bootcdn/cdnjs | /*
* # Semantic UI - 1.6.3
* https://github.com/Semantic-Org/Semantic-UI
* http://www.semantic-ui.com/
*
* Copyright 2014 Contributors
* Released under the MIT license
* http://opensource.org/licenses/MIT
*
*/
/*******************************
Sticky
*******************************/
.ui.sticky ... |
dist/components/loader.css | gangeshwark/Semantic-UI | /*!
* # Semantic UI 2.0.5 - Loader
* http://github.com/semantic-org/semantic-ui/
*
*
* Copyright 2015 Contributors
* Released under the MIT license
* http://opensource.org/licenses/MIT
*
*/
/*******************************
Loader
*******************************/
/* Standard Size */
.ui.loader {... |
zeppelin-client/src/asserts/codemirror-5.10/test/mode_test.css | zhanglei13/zeppelin | .mt-output .mt-token {
border: 1px solid #ddd;
white-space: pre;
font-family: "Consolas", monospace;
text-align: center;
}
.mt-output .mt-style {
font-size: x-small;
}
.mt-output .mt-state {
font-size: x-small;
vertical-align: top;
}
.mt-output .mt-state-row {
display: none;
}
.mt-state-unhide .mt-o... |
third_party/web_platform_tests/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_pre_wrapped.html | youtube/cobalt | <!DOCTYPE html>
<html>
<title>WebVTT rendering, bold object, ::cue(b), white-space: pre (cue that wraps)</title>
<link rel="match" href="bold_white-space_pre_wrapped-ref.html">
<style>
html { overflow:hidden }
body { margin:0 }
::cue(b) {
white-space: pre
}
</style>
<script src="/common/reftest-wait.js"></script>
<... |
third_party/web_platform_tests/webstorage/event_session_storageeventinit.html | youtube/cobalt | <!DOCTYPE HTML>
<html>
<head>
<title>WebStorage Test: sessionStorage event - StorageEventInit</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<h1>event_session_StorageEventInit</h1>
<div id="log"></div>
<script>
... |
www/lib/font-awesome/src/3.2.1/icon/envelope/index.html | vinnylinck/TodoSyncPoc | <!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en" xmlns="http://www.w3.org/1999/html"> <!--<![endif]-->
<head>
<!-- Basic... |
web/js/verifphone/goog/closure-library-master/closure/goog/positioning/positioning_test_iframe2.html | Serard/cmsulysse | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!--
-->
<html><body style="border:0px;margin:0px;">
<!--
Copyright 2009 The Closure Library Authors. All Rights Reserved.
Use of this source code is governed by the Apache License, Version 2.0.
See the C... |
third_party/web_platform_tests/html/semantics/forms/constraints/tooLong-input-email-delete-manual.html | youtube/cobalt | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>input[type="email"], ValidityState.tooLong and user editing</title>
<link rel="author" title="Chris Rebert" href="http://chrisrebert.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/#limiting-user-input-length:-the-maxlengt... |
third_party/web_platform_tests/mixed-content/allowed/http-csp/same-host-https/audio-tag/top-level/keep-scheme-redirect/allowed.https.html | youtube/cobalt | <!DOCTYPE html>
<!-- DO NOT EDIT! Generated by mixed-content/generic/tools/generate.py using mixed-content/generic/template/test.release.html.template. -->
<html>
<head>
<title>Mixed-Content: Allowed content</title>
<meta charset='utf-8'>
<meta name="description" content="Test behavior of allowed content.... |
ajax/libs/ammaps/3.10.0/ammap.min.css | schoren/cdnjs | .ammapAlert{display:table-cell;vertical-align:middle;text-align:center;font-family:verdana,helvetica,arial,sans-serif;font-size:12px;color:#c00}.ammapDescriptionWindow{font-size:11px;font-family:verdana,helvetica,arial,sans-serif;background-color:#fff;border-style:solid;border-color:#dadada;border-width:1px;color:#000;... |
web/js/verifphone/goog/closure-library-master/closure/goog/demos/dragdropdetector_target.html | Serard/cmsulysse | <html>
<!--
Copyright 2010 The Closure Library Authors. All Rights Reserved.
Use of this source code is governed by the Apache License, Version 2.0.
See the COPYING file for details.
-->
<head>
<style type="text/css">
html, body {
width: 100%;
height: 100%
}
</style>
</head>
<body></body>
</html>
|
third_party/web_platform_tests/notifications/constructor-invalid.html | youtube/cobalt | <!DOCTYPE html>
<meta charset="utf-8">
<title>Notification constructor (invalid)</title>
<link rel="author" title="Intel" href="http://www.intel.com/">
<link rel="author" title="Xin Liu" href="mailto:xinx.liu@intel.com">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></s... |
packages/css/src/_alert.css | WeAreGenki/wag-ui | .alert-tip,
.alert-info,
.alert-warn,
.alert-error {
padding: var(--alert-padding);
margin-top: var(--alert-margin-y);
margin-bottom: var(--alert-margin-y);
border-left: var(--alert-border-size) solid transparent;
> a {
text-decoration: underline; /* FIXME: Keep? */
}
}
.alert-tip {
color: var(--ale... |
src/reusableComponents/iconHeader/iconHeader.css | Alx-l/portfolio | @import "../../../styles/base/_settings.css";
@import "../../../styles/utils/_helpers.css";
.root {
position: relative;
padding: var(--spacer-lg) 0 var(--spacer-xl) var(--spacer);
overflow: hidden;
}
.heading {
transform-style: preserve-3d;
margin-bottom: 0;
background-color: inherit;
color: var(--accen... |
index.html | ksanaforge/react-list-sample | <html>
<head>
<meta charset='utf-8' />
<link type="text/css" rel="stylesheet" href="index.css" />
<script src="/socket.io/socket.io.js"></script>
<meta name="mobile-web-app-capable" content="yes" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=1"/>
</head>
... |
ife_baidu/html/1_1_7/bootstrap_responsive_index.html | xiezhm3/ToDoList | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>learning bootstrap responsive design</title>
<link rel="stylesheet" href="style.css">
<!-- 最新版本的 Bootstrap 核心 CSS 文件 -->
<!--<link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css"-->
... |
demo.html | sammarks/font | <!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>IcoMoon Demo</title>
<meta name="description" content="An Icon Font Generated By IcoMoon.io">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="demo-files/demo.css">
<link rel="stylesheet" href="style.css"></head>
<body>
<... |
blog/content/posts/2016-07-21-sharepoint_sql_session_state_error.html | aZerato/aZerato.github.io | <div data-model="publication_date">2016-07-21</div>
<img data-img="/blog/files/img/routing-table.jpg" data-img-alt="http://s2.quickmeme.com/img/e6/e68245cc9b5e1ff15f103c7bd5a909d87f415c6433780e8e1442d8c93d6a03e2.jpg" />
<div data-lang="fr">
<div data-model="title">Sharepoint - erreur "SqlSessionState"</div>
<div da... |
_includes/footer.html | simecek/simecek.github.io | <footer class="my-footer z-depth-2">
<p>
<a class="waves-effect waves-teal btn-flat my-imprint-link" href="{{ "/imprint.html" | prepend: site.baseurl }}">{{ site.imprint_btn }}</a>
{% if site.email %}
<a href="mailto:{{ site.email }}" class="waves-effect waves-teal btn-flat my-mail-link"><i ... |
doc/java/jdk8/java/util/spi/compact2-package-summary.html | fbiville/annotation-processing-ftw | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_31) on Wed Dec 17 20:48:22 PST 2014 -->
<title>java.util.spi (Java Platform SE 8 )</title>
<meta name="date" content="2014-12-17">
<meta name="... |
packages/poc-iframe-home3/client/iframeLink.html | pachox/Rocket.Chat | <template name="iframeHome3Link">
<h3><a href="/home3">My Home</a></h3>
</template>
|
people/fspnlvic.html | slowe/panelshows | <html>
<head>
<title>Matthew Syed's panel show appearances</title>
<script type="text/javascript" src="../common.js"></script>
<link rel="stylesheet" media="all" href="../style.css" type="text/css"/>
<script type="text/javascript" src="../people.js"></script>
<!--#include virtual="head.txt" -->
</head>
<body>
<!--#... |
other.html | okfse/oppnamangfaldsdata | ---
layout: default
link: Be dem om att ge ut sin mångfaldsdata
tweet: Mångfald är viktigt, @TWITTERHANDLE. Gör styrelsens & anställdas demografiska data öppen & tillgänglig!
link_progress: Tacka dem för att de arbetar på att publicera deras mångfaldsdata
tweet_progress: Tack för att ni arbetar på att öppna er mångfa... |
public/programming/toolkits/web-toolkits/Web Toolkits/index.html | NiceToKnow/IT | <!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Web Toolkits · Nice To Know IT</title>
<link rel="stylesheet" href="https://nicetoknow.github.io/IT/css.css" type="text/css" >
</head>
<body >
... |
lib/assets/css/css_compiled/@{photonImagePath}plugins/elrte/js/images/photon/js/bootstrap/js/plugins/elrte.min.js.html | user-tony/photon-rails | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Login Page - Photon Admin Panel Theme</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<link rel="shortcut icon" href="ht... |
server/register_OK.html | zhaowenyi94/hey-spark | register_OK |
test/fixtures/man.html | nerab/manbook | <!-- Creator : groff version 1.19.2 -->
<!-- CreationDate: Tue Nov 29 21:01:36 2011 -->
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta name="generator" content="groff -Thtml, see www.gnu.org">
<meta http-equiv="Content-Type" content="text/h... |
_includes/header.html | Morbit/frontendsu | <header class="site-header px2 px-responsive">
<div class="mt2 wrap">
<div class="measure">
<a href="{{ site.url }}" class="site-title">{{ site.title }}</a>
<nav class="site-nav">
{% include navigation.html %}
</nav>
<div class="clearfix"></div>
{% if site.show_social_icons %... |
WASP-turtlebot-DSL/.metadata/.plugins/org.eclipse.pde.core/Eclipse Application/org.eclipse.osgi/142/0/.cp/javadoc/org/eclipse/emf/cdo/security/impl/class-use/RealmImpl.html | kribe48/wasp-mbse | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<title>Uses of Class org.eclipse.emf.cdo.security.impl.RealmImpl (CDO Model Repository Documentation)</title>
<meta name="date" content="">
<link rel="stylesheet" type="text/c... |
articles/dsp/generating-sinusoids/index.html | tiborsimon/tiborsimon.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Generating sinusoid signals - Tibor's Lab</title>
<meta name="description" content="Generating sinusoid signals is often the first step for executing a more complex computation. It should be a routine, but actually it isn't. Many people st... |
example/src/css/style.css | gaer87/react-swipe-to-delete-component | /* Sticky footer styles
-------------------------------------------------- */
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
margin-bottom: 60px;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
/* Set the fixed height of the footer here */
height: ... |
{{ cookiecutter.name }}_project/{{ cookiecutter.name }}/templates/admin/base.html | artinnok/django-default-skeleton | {% raw %}{% load i18n admin_static %}<!DOCTYPE html>
{% get_current_language as LANGUAGE_CODE %}{% get_current_language_bidi as LANGUAGE_BIDI %}
<html lang="{{ LANGUAGE_CODE|default:"en-us" }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}>
<head>
<title>{% block title %}{% endblock %}</title>
<link rel="stylesheet" type=... |
SQL-Editor.html | werkzeuge/js-syntax-online | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title>Hello SyntaxHighlighter</title>
<link type="text/... |
docs/seminar/sa22.html | siddhartha-gadgil/www.math.iisc.ernet.in | ---
---
<br>
<br>
<table border="0">
<tbody>
<tr>
<td valign="top"><b>Event Title:</b></td>
<td> Optimum experimental design </td>
</tr>
<tr>
<td valign="top"><b>Speaker:</b></td>
<td> Prof. Volker Schulz </td>
</tr>
<tr>
<td valign="top"><b>Affiliation:</b></td>
... |
public/css/main.css | ftyszyx/companyWeb |
.main .about{
width: 32%;
float: left;
}
.main .knowledge{
width: 32%;
float: left;
margin-left: 1%;
}
.main .news{
width: 32%;
float: right;
/*margin-left: 1%;*/
}
/*产品展示 */
.product{
width: 100%;
}
/*案例展示 */
.cases{
width: 100%;
}
#proudct_Movie_Box,#case_Movie_Box{... |
tags/c++/page/1/index.html | Yoric/yoric.github.io | <!DOCTYPE html><html><head><title>https://yoric.github.io/tags/c++/</title><link rel="canonical" href="https://yoric.github.io/tags/c++/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://yoric.github.io/tags/c++/" /></head></html> |
docs/index-files/index-1.html | slauber/Crawcial | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_40) on Fri Mar 27 01:12:27 CET 2015 -->
<title>A-Index</title>
<meta name="date" content="2015-03-27">
<link rel="stylesheet" t... |
utils/pmd-bin-5.2.2/docs/pmd-javascript/xref-test/net/sourceforge/pmd/cli/package-frame.html | byronka/xenos |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>PMD JavaScript 5.2.2 Reference Package net.sourceforge.pmd.cli</title>
... |
utils/pmd-bin-5.2.2/docs/pmd-java/testapidocs/net/sourceforge/pmd/lang/java/rule/loggingjakartacommons/package-tree.html | byronka/xenos | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_65) on Wed Dec 03 20:05:11 CET 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>net.sourceforge.pmd... |
Sources/Zeldamap/wwwroot/css/site.css | tberst/ZeldaMap | .nav-side-menu {
overflow: auto;
font-family: verdana;
font-size: 12px;
font-weight: 200;
background-color: #2e353d;
position: fixed;
top: 0px;
width: 250px;
height: 100%;
color: #e1ffff;
}
.nav-side-menu .brand {
background-color: #23282e;
line-height: 50px... |
Resources/hibernate-release-5.0.12.Final/documentation/orm/5.0/javadocs/org/hibernate/integrator/spi/ServiceContributingIntegrator.html | thefreebird777/StockMarketGame | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_40) on Thu Jan 19 13:15:10 EST 2017 -->
<title>ServiceContributingIntegrator (Hibernate JavaDocs)</title>
<meta name="date" content="2017-01-19... |
fondecyt-11150861/r/precipitation/remote-sensing/2017/12/12/AGU2017.html | hzambran/hzambran.github.io | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Oral presentation at AGU 2017</title>
<meta name="description" content="During the second week of December 2017, I made an ... |
index.html | madma/whack_a_mole | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Whack-A-Mole</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Whack-a-molé</h1>
<div id='grid'>
<table>
<tbody>
<tr>
<td id='c0'></td>
<td id='... |
thanks.html | Kmess/SteamTurbine | <!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="description" content="SublimeCodeIntel : Full-featured code intelligence and smart autocomplete engine" />
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.... |
fixtures/test-app/source/with_url_params.html | amsardesai/middleman-protect-emails | <html><head></head><body><a href='mailto:email@example.com?subject=Test%20Subject&body=Test%20Body'></a></body></html>
|
test/fixtures/nested-calculations.expected.css | F21/postcss-vertical-rhythm-function | body {
font-size: 100%;
line-height: 2;
}
.test {
padding: 50rem;
} |
docsets/Java 5.docset/Contents/Resources/Documents/org/omg/CORBA/StringSeqHelper.html | Smolations/more-dash-docsets | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<meta name="collection" content="api">
<!-- Generated by javadoc (build 1.5.0-rc) on Wed Aug 11 07:27:49 PDT 2004 -->
<TITLE>
StringSeqHelper (Java 2 Platform SE 5.0)
</TITLE>
<META NAME=... |
docsets/ATG 2007.1.docset/Contents/Resources/Documents/atg/servlet/pagecompile/package-summary.html | Smolations/more-dash-docsets | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.4.2_05) on Fri Dec 23 12:53:15 EST 2005 -->
<TITLE>
atg.servlet.pagecompile (ATG Java API)
</TITLE>
<META NAME="keywords" CONTENT="atg.servlet.pagecompi... |
index.html | JeffinBao/JeffinBao.github.io | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge" >
<link rel="dns-prefetch" href="http://yoursite.com">
<title>Jeffin's Blog</title>
<meta name="viewport" content="width=device-width, initial-scale=1, max... |
modules/core/client/css/core.css | dnazmije/expenses-app | .content {
margin-top: 50px;
}
.undecorated-link:hover {
text-decoration: none;
}
[ng\:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak {
display: none !important;
}
.ng-invalid.ng-dirty {
border-color: #FA787E;
}
.ng-valid.ng-dirty {
border-color: #78FA89;
}
.header-profile-image {
... |
ProyectoCarreras/doc/clases/Carrera.html | usainzg/RaceManager | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="es">
<head>
<!-- Generated by javadoc (1.8.0_91) on Wed Nov 16 16:58:38 CET 2016 -->
<title>Carrera</title>
<meta name="date" content="2016-11-16">
<link rel="stylesheet" type="text/css" h... |
assets/css/style.css | RNanoware/robsonwebsite | /* line 17, ../../../../../../var/lib/gems/1.9.1/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, stri... |
project/doc/gui/control/class-use/SearchTool.html | sekys/ivis | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_21) on Fri May 03 11:00:28 CEST 2013 -->
<TITLE>
Uses of Class gui.control.SearchTool
</TITLE>
<META NAME="date" CONTENT="2013-05-03">
<LINK REL ="... |
c7cb4da/html/classv8_1_1_int32.html | v8-dox/v8-dox.github.io | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" con... |
0052_mongo_table_view.html | jeremytammik/3dwc | <p><head>
<title>The 3D Web Coder</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" type="text/css" href="3dwc.css"/>
<script src="run_prettify.js" type="text/javascript"></script>
<!--
<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"... |
vendor/poi-3.6/doc/apidocs/org/apache/poi/openxml4j/opc/PackagingURIHelper.html | tobyclemson/msci-project | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_13) on Mon Dec 14 15:24:59 MSK 2009 -->
<TITLE>
PackagingURIHelper (POI API Documentation)
</TITLE>
<META NAME="date" CONTENT="2009-12-14">... |
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/a6fa460068ec18589893e9a8975cee2d8c75adb8c29e04d6bbb856f22c7d37b7.html | simonmysun/praxis | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./9420e060c41d542397ba43e6cf5d057c7368b20e26ef9128e2a0b44d28429140.html">Teleport</a>
<hr>
... |
djangopress/core/templates/core/pagination.html | codefisher/djangopress | {% load show_pagination %}
{% if pages %}
<div class="pagination">
<span class="step-links">
{% if pages.has_previous %}
<a rel="prev" class="previous-link" href="{% _page_link instance pages.previous_page_number %}">« Previous</a>
{% else %}
<s... |
details.html | fmcarvalho/HtmlFlow | <!DOCTYPE html>
<html>
<body>
<p>
Typesafe is awesome! :-)
</p>
</body>
</html> |
coverage/Game/GameContext.php.html | jeremyadoux/DockerSymfony | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Code Coverage for D:\VM\Docker2\src\AppBundle/Game/GameContext.php</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="../css/bootstrap.min.css" rel="stylesheet">
<link href="../css/style.css" rel="st... |
views/valesconsulta.html | IsaacMiguel/Maresa | {% extends 'template.html' %}
{% block title %}
{{ pagename }}
{% endblock %}
{% block content %}
<link href="/css/valesconsulta.css" rel="stylesheet">
<img src="/uploads/vale.png">
<h2>{{ pagename }}</h2>
<div class="panel panel-default">
<!-- Default panel contents -->
<div class="panel-heading">
<!-- Tabl... |
assets/includes/archive-post.html | ludwick/fancybeans-theme | <article class="archive {{ post.class }}" role="article">
<header class="archive-entry-header">
<h3 class="archive-entry-title">{{ post.title_link }}</h3>
<div class="archive-entry-date">{{ post.date_html }}</div>
</header>
{% assign bullet = " <span class='separator'>•</span> " %}
<footer class=... |
miniWiki/index.html | ttu/ttu.github.io | <html>
<head>
<title>miniWiki</title>
<meta http-equiv='Content-Type' content='text/html; charset=UTF-8'/>
<link rel='stylesheet' type='text/css' href='style.css'/>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js'></script>
<script type='text/javascript' src='script.... |
application/tests/build/coverage/views_errors_cli.dashboard.html | finsananda/ecommarcekppl | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dashboard for C:\xampp\htdocs\ecommarcekppl\application/views/errors/cli</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-responsi... |
src/components/add-channel-form/style.css | jnmorse/freecodecamp-twitchtv | .addForm {
display: grid;
grid-template-columns: 1fr max-content;
margin: 1rem;
background-color: white;
column-gap: 0.5rem;
padding: 0px 1rem;
border-radius: 0.5rem;
}
.inputArea {
display: grid;
align-items: center;
column-gap: 0.5rem;
grid-template-columns: max-content 1fr;
}
.label {
font-... |
_includes/footer.html | ejklike/ejklike.github.com | © 2015-{{ site.time | date: '%Y' }} {{ site.author }}
with help from <a href="http://jekyllrb.com/" target="_blank">Jekyll</a>
<br>
<a href="http://instagram.com/ejklike/" target="_blank"><i class="fa fa-instagram"></i></a>
<a href="mailto:eunjikim@dm.snu.ac.kr" target="_blank"><i class="fa fa-envelope-square"></... |
src/docs/_pages/index.html | elebetsamer/bootstrap-stencil | ---
layout: home
class: "highlight-light"
---
<div class="row m-0 border border-white">
<div class="col-12 col-md-4 p-3 p-md-5 bg-light border border-white">
<h3>Use via script</h3>
<p>Put a script tag in the head of your site.</p>
{% highlight html %}
<script src='https://unpkg.com/bootstrap-stencil... |
public/themes/simpliq/charts-xcharts.html | standart-n/spacepro | <!DOCTYPE html>
<html lang="en">
<head>
<!-- start: Meta -->
<meta charset="utf-8">
<title>SimpliQ - Flat & Responsive Bootstrap Admin Template</title>
<meta name="description" content="SimpliQ - Flat & Responsive Bootstrap Admin Template.">
<meta name="author" content="Łukasz Holeczek">
<meta name="keyword" co... |
_site/2017/10/05/interview/index.html | Amice13/court-on-the-palm | <!DOCTYPE html>
<html lang="uk">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Суд на долоні - аналітичний інструмент для пошуку, дослідження та візуалізації суд... |
CochleoidTripleEllipse1RGradient1.html | ocampesato/jquery-graphics | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>jQuery Cochleoid Graphics</title>
<style type="text/css">
@import "css/jquery.svg.css";
#svgcanvas { width: 800px; he... |
doc/wayland_kbd/keysyms/constant.XKB_KEY_kana_MO.html | mcanders/bevy | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `XKB_KEY_kana_MO` constant in crate `wayland_kbd`.">
<meta ... |
resources/views/temp/api-key.html | adl1995/zoho-portal | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>KDG Zoho Admin Panel | API Key</title>
<!-- ================= Favicon ================... |
app/views/v2-1/result-4.html | chrisisk/dvsa-check-mot-history | {% extends "layout.html" %}
{% block page_title %}
Check MOT history
{% endblock %}
{% block content %}
<main id="content" role="main">
<a class="link-back" href="enter-reg">Back</a>
<div class="banner advice">
<h2 class="heading-medium">
The MOT of this vehicle is expiring soon on 9 February 2018
</h2>... |
css/sample.css | yasinkuyu/Bijou | /*
Yasin Kuyu
02/06/2014
Icon Sprites
github.com/yasinkuyu/Bijou
twitter.com/yasinkuyu
Icon Designer
Visual Idiot
https://github.com/idiot/Bijou
*/
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
body {
background: #fff;
font-family: 'Open Sans', sans-serif;
font-weight: 400;
text-al... |
target145.html | joray/PingjiangMiddleSchool76 | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>img_1802.jpg</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<span class="textbg">20160204 -- img_1802.jpg </span><br> <span class="textsm"></span>
<p><span class="te... |
app/public/elements/name-tag.html | iamnizzam/recruitment-test-fullstack | <link rel="import" href="../bower_components/polymer/polymer.html"/><polymer-element name="name-tag"><template><p>This is <strong>{{owner}}</strong>'s name-tag element.</p>
</template><script>(function() {
Polymer({
owner: 'Daniel'
});
}).call(this);
</script></polymer-element> |
styles/css/style.css | minhtri2710/Blogs-simplemvc | /*
Theme Name: Classic
Theme URI: http://magikcommerce.com/
Author: MagikCommerce
Author URI: https://www.magikcommerce.com/
Description: Classic HTML Template
Version: 1.4
License: GNU General Public License v2 or later
Tags: two-columns, left-sidebar, fixed-layout, responsive-layout, custom-background, custo... |
_includes/menu-search.html | MColdFire/website | <div class="search-wrapper">
<div class="search-form">
<input type="text" class="search-field" placeholder="Search...">
<svg class="icon-remove-sign"><use xlink:href="#icon-close"></use></svg>
<ul class="search-results search-list"></ul>
</div>
</div>
<div id="fade" class="overlay"></di... |
index.html | danieldaeschle/TextFormatterJS | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>TextFormatterJS</title>
<script src="src/text-formatter.js" charset="utf-8"></script>
<link href="src/text-formatter.css" rel="stylesheet">
<link href="docs/master.css" rel="stylesheet">
<link href="https://f... |
layouts/partials/share.html | dim0627/hugo_theme_robust | <aside class="share">
<a href="https://b.hatena.ne.jp/add?mode=confirm&url={{ .Permalink }}&title={{ .Title }}" title="はてなブックマーク" class="ht" target="_blank" rel="noopener nofollow">B!</a>
<a href="https://twitter.com/intent/tweet?url={{ .Permalink }}&text={{ .Title }}&tw_p=tweetbutton" title="Twitterでシェア" class="tw... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.