-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGetting_Started.html
More file actions
51 lines (49 loc) · 2.19 KB
/
Getting_Started.html
File metadata and controls
51 lines (49 loc) · 2.19 KB
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
<!-- This is a sample interface for testing Tecxick Web Animation Libraries
* Can be used as a documentation -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/tecxick/TAnimations@v1.0.1/TAnimations.css"/>
<script src="https://cdn.jsdelivr.net/gh/tecxick/TAnimations@v1.0.1/TAnimations.js"></script>
<title>Tecxick Web Animations</title>
</head>
<body>
<nav class="top-nav">
<div class="nav-logo">
<img src="Resources/Tecxick Logo.svg" alt="Tecxick logo">
</div>
<a class="acrylic-button">
<img src="Resources/Phone.svg" alt="Phone" class="button-icon">
Contact Us
</a>
</nav>
<section>
<h1 class="getting-started">GETTING STARTED</h1>
<h4 class="getting-started-p1">Follow the steps given below to include the animation library to your project easily</h4>
<h4 class="getting-started-p2-p5">
Include These 2 Lines Between The <span style="color: #397EF0">Head</span> Tag
</h4>
<div class="getting-started-p3">
<img src="Resources/Code.svg" alt="code">
<link href="cdn.jsdelivr.net/gh/tecxick/TAnimations@v1.0.0/TAnimations.css" rel="stylesheet" />
</div>
<div class="getting-started-p4">
<img src="Resources/Code.svg" alt="code">
<script src="cdn.jsdelivr.net/gh/tecxick/TAnimations@v1.0.0/TAnimations.js"></script>
</div>
<h4 class="getting-started-p2-p5">
include This At The End Of Your <span style="color: #397EF0">Body</span> Tag
</h4>
<div class="getting-started-p6">
<img src="Resources/Code.svg" alt="code">
<script> AnimInit();</script/>
</div>
</section>
<script>
AnimInit();
</script>
</body>
</html>