Forráskód Böngészése

Skeleton html and css file added

Muhammad Talha Mansoor 13 éve
szülő
commit
280f72ad1d
2 módosított fájl, 30 hozzáadás és 0 törlés
  1. 2 0
      central.css
  2. 28 0
      index.html

+ 2 - 0
central.css

@@ -0,0 +1,2 @@
+/* import framework core */
+@import url("yaml/core/base.min.css");

+ 28 - 0
index.html

@@ -0,0 +1,28 @@
+<!doctype html>
+<html lang="en">
+<head>
+  <meta charset="utf-8"/>
+
+  <title>Hello YAML</title>
+  <meta name="description" content=""/>
+  <meta name="author" content="talha131"/>
+
+  <!-- mobile viewport optimisation -->
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+
+  <!-- stylesheets -->
+  <link rel="stylesheet" href="central.css" type="text/css"/>
+
+  <!--[if lte IE 7]>
+  <link rel="stylesheet" href="yaml/core/iehacks.min.css" type="text/css"/>
+  <![endif]-->
+
+  <!-- To enable Internet Explorer 6-8 to render HTML5 elements correctly -->
+  <!--[if lt IE 9]>
+  <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
+  <![endif]-->
+</head>
+<body>
+  ...
+</body>
+</html>