-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage3.html
27 lines (27 loc) · 1.3 KB
/
page3.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<title>page 3 : WEBFONTS</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="javascript/jquery-1.8.2.min.js"></script>
</head>
<body>
<div id="wrapper">
<nav><a href="index.html">Home</a> <a href="page1.html">HTML</a> <a href="page2.html">CSS</a> <a href="page3.html">WEBFONTS</a> <a href="offline.html">offline</a> </nav>
<h5>Read it later ? <button type="button" id="readOffBtn">SAVE OFFLINE</button></h5>
<article id="articletext">
<h1>My third exemple of article : WEBFONTS</h1>
<h4>What is WebFonts?</h4>
<p>WebFonts is a technology that enables people to use fonts on demand over the Web without requiring installation in the operating system. W3C has experience in downloadable fonts through HTML, CSS2, and SVG. Until recently, downloadable fonts have not been common on the Web due to the lack of an interoperable font format. The WebFonts effort plans to address that through the creation of an industry-supported, open font format for the Web (called "WOFF").</p>
<p>Source : <a href="http://www.w3.org/standards/webdesign/htmlcss" target="_blank">W3C</a></p>
</article>
</div>
<script src="javascript/readOfflineApp.js"></script>
<script>
$(document).ready(function() {
pageready();
});
</script>
</body>
</html>