-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
32 lines (32 loc) · 826 Bytes
/
blog.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
<html>
<head>
<title>Just Another Blog</title>
</head>
<body>
<font face="Times New Roman">
<h1>Título do post</h1>
<i>Escrito por Xunda, no dia 10 de Abril de 2011</i>
<br><br>
Este é um exemplo de como seria um tema (extremamente) minimalista.<br>
Fonte "Times New Roman" para tudo. Exceto códigos, que utilizam "Courier New".
<br><br>
<code>
/* Fonte de largura fixa */
<br><br>
#include <stdio.h>
<br><br>
int main() {
<br>
printf("Hello World!\n");
<br>
return(0);
<br>
}
</code>
<br><br>
Por hoje é só pessoal!
<br><br>
<a href="blog.html">Permalink</a> - <a href="blog.html#comments">Comentários (0)</a>
</font>
</body>
</html>