generated from 2KAbhishek/bare-minimum
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (40 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vim Tribute</title>
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="images/ico.png" type="image/png" />
</head>
<body>
<main id="main">
<h1 id="title">Vim</h1>
<p>The power tool for everyone!</p>
<figure id="img-div">
<img src="images/vim.jpg" alt="vim editing this page" id="image" />
<figcaption id="img-caption">
vim opened in a terminal emulator and editing this page's html.
</figcaption>
</figure>
<section id="tribute-info">
<h2>What is Vim?</h2>
<p>
Vim is a highly configurable text editor built to enable efficient text editing. Vim is often called
a "programmer's editor".
</p>
<h3>Vim's features</h3>
<ul>
<li>Persistent, multi-level undo tree.</li>
<li>Extensive plugin system.</li>
<li>Support for hundreds of languages and file formats.</li>
<li>Powerful search and replace.</li>
<li>Integrates with many tools.</li>
</ul>
<h4>More Information</h4>
<a href="https://www.vim.org/" target="_blank" id="tribute-link">Official Vim Site</a>
<a href="http://vim.wikia.com/wiki/Vim_Tips_Wiki" target="_blank">Vim Tips Wiki</a>
</section>
</main>
</body>
</html>