-
Notifications
You must be signed in to change notification settings - Fork 1
/
index-main-test.html
112 lines (109 loc) · 3.84 KB
/
index-main-test.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<html>
<head>
<link href="css/main-interface.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<meta charset="utf-8">
</head>
<body>
<div id="list-anything-main">
<h1>Welcome to ListAnything</h1>
<p>Below you can choose a list to load or create a new list from scratch.</p>
<div class="panel-container">
<ul id="list-list">
<li id="create-new-list">
<button>
<i class="fa fa-plus"></i>
<span>A+ Books</span>
</button>
</li>
<li>
<!-- thought this would be more generalized, we could change it later if needed. change test-->
<span class="fa fa-road fa-fw"></span> Chapter 1 path of the pc tech
</li>
<li>
<span class="fa fa-book fa-fw"></span> chpater 2 operational procedures
</li>
<li>
<span class="fa fa-desktop fa-fw"></span> chapter 3 the visible Computer
</li>
<li>
<span class="fa fa-microchip fa-fw"></span> chapter 4 microprocessors
</li>
<li>
<span class="fa fa-ticket-alt fa-fw"></span> chapter 5 RAM
</li>
<li>
<span class="fa fa-computer fa-fw"></span> chapter 6 BIOS
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 7 motherboards
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 8 power supplies
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 9 hard drive technologies
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 10 implementing hard drives
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 11 essential peripherals
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 12 building a PC
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 13 windows under the hood
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 14 users, groups, and permissions
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 15 maintaining and optimizing OS's
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 16 working with the command line interface
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 17 troubleshooting operating systems
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 18 virtualization
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 19 Display technologies
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 20 Essentials of Networking
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 21 Local Area Networking
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 22 Wireless Networking
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 23 The Internet
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 24 Portable Computing
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 25 Understanding Mobile Devices
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 26 Care and Feeding of Mobile Devices
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 27 Printers and Multifunction Devices
</li>
<li>
<span class="fa fa-states fa-fw"></span> chapter 28 Securing Computers
</li>
</ul>
</div>
</div>
</body>
</html>