-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (99 loc) · 4.36 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Onedrivecli</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<script type="text/javascript" src="./js/main.js"></script>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet">
<link rel="shortcut icon" type="image/x-icon" href="./image/drawing1.ico"/>
</head>
<body>
<header>
<div class="menu-container container">
<ul>
<li class="title_li"><a href="#" class="title">OneDrivecli</a></li>
<li><a href="#" class="first_section">About</a></li>
<li><a href="#" class="second_section">Download</a></li>
<li><a href="#" class="third_section">Documentation</a></li>
</ul>
<a href="https://github.com/PanSem/onedrivecli" class="download" download>Source Code</a>
</div>
<div class="header-container container">
<img class="cloud" src="./image/drawing2.png" alt="">
<p class="subt"></p>
<div class="center">
<i class="fas fa-arrow-down"></i>
</div>
</div>
</header>
<section id="info">
<div class="container-info container">
<h2>What it's all about?</h2>
<div class="slideshow-container">
<div class="mySlides fade center">
<i class="fas fa-terminal"></i>
<h3>Everything from terminal</h3>
<p class="text">You can do almost everything you want from your terminal with just one simple command.</p>
</div>
<div class="mySlides fade center">
<i class="fas fa-code"></i>
<h3>API</h3>
<p class="text">You can download the code and use it in your programs.</p>
</div>
<div class="mySlides fade center">
<i class="fab fa-github"></i>
<h3>Open Source</h3>
<p class="text">All the code can be found in <a href="https://github.com/PanSem/onedrivecli/">Github</a>. If you think that you have any good ideas about additional
functionality for the program, feel free to clone the code and make any changes you like.</p>
</div>
<a class="prev"><</a>
<a class="next">></a>
</div>
<br>
<div class="all_dot">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>
</div>
</section>
<section class="source">
<div class="container container-source">
<h2>Download</h2>
<i class="fas fa-file-download"></i>
<p>  The above its an open source project. You can download it using the code in the box bellow. Just copy and
paste the code in your terminal. You must have administration rights.</p>
<div class="language-powershell highlighter-rouge">
<div class="highlight">
<i class="fab fa-windows"></i>
<i class="fab fa-linux"></i>
<pre class="highlight">
<code><span class="nb">iex</span> <span class="o">(</span><span class="nb">new-object </span>net.webclient<span class="o">)</span>.downloadstring<span class="o">(</span><span class="s1">'https://raw.githubusercontent.com/PanSem/onedrivecli-site/master/install.ps1'</span><span class="o">)</span>
</code>
</pre>
</div>
</div>
</div>
</section>
<section class="source to_right">
<div id="documentation" class="container container-source">
<h2>Documentation</h2>
<i class="fas fa-book"></i>
<p>  All the documentation can be found <a href="https://github.com/PanSem/onedrivecli/#usage">here</a>. You must have installed
Powershell and Chrome in Windows. If you think that you have any good ideas about additional
functionality for the program, feel free to clone the code and make any changes you like.
If your not a programmer but you have a good idea about the program sent an email with your ideas.</p>
</div>
</section>
<footer>
<div class="container container-fo">
<p>© 2018 Pan Sem.</p>
<p><i class="fas fa-envelope"></i> email: [email protected]</p>
</div>
</footer>
</body>
</html>