-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
77 lines (57 loc) · 2.87 KB
/
index.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en" class="normal green">
<head>
<meta charset="UTF-8">
<meta name="description" content="Home Page, Turbo C/C++ simple basic web site theme." />
<meta name="author" content="Fatih Tatoğlu" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Turbo C Theme - Home Page</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet">
<link rel="canonical" href="https://blog.tatoglu.net/blog-theme-turboc" />
<link rel="home" href="https://blog.tatoglu.net/blog-theme-turboc" />
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon/favicon-16x16.png">
<link rel="manifest" href="images/favicon/site.webmanifest">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="./css/main.css" />
<script src="node_modules/mustache/mustache.min.js"></script>
<script src="./js/main.js"></script>
</head>
<body>
<header>
<span class="site-name">Turbo C Theme - Home Page</span>
</header>
<nav id="navigation"></nav>
<main>
<article>
<header>
<h1>Home</h1>
<button>#</button>
</header>
<p>Turbo C/C++ Theme for web site.</p>
<p>When I have started programming, my first IDE was Turbo C. With helpful documents I have learned the C
programming language. Turbo C has an important place in my heart. For showing my admiration, I have
developed this theme.</p>
<p>I have tried to achieve totally copy same user experience with Turbo C.</p>
<img src="https://upload.wikimedia.org/wikipedia/commons/1/16/Turbo_CPP_Compiler.jpg"
alt="Turbo C/C++ Compiler" title="Turbo C/C++ Compiler" />
<h6>References</h6>
<ul>
<li><a href="https://en.wikipedia.org/wiki/Borland_Turbo_C" target="_new">Borland Turbo C</a></li>
<li><a href="https://en.wikipedia.org/wiki/Turbo_C%2B%2B" target="_new">Turbo C++</a></li>
</ul>
</article>
</main>
<footer>
<span class="credits">By <a href="https://github.com/fatihtatoglu" target="_new" rel="external"
title="Developed by Fatih Tatoğlu">Fatih
Tatoğlu</a> - 2022</span>
</footer>
</body>
</html>