-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (69 loc) · 3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<link rel="stylesheet" href="./css/main.css">
<title>Home</title>
</head>
<body>
<div class="container">
<header>
<!-- Nav section -->
<nav>
<h3 id="logo">nileshkaranjit</h3>
<a href="index.html">Home</a>
<a href="./Pages/Services.html">Services</a>
<a href="./Pages/Gallery.html">Gallery</a>
<a href="./Pages/contact.html">Contact</a>
<a href="./Pages/about.html">About</a>
</nav>
<!-- Image section -->
<section>
<div class="MyImg">
<img src="C:\Users\nilesh\Desktop\nk.jpg" alt="nk">
<h1 class="headline"><span class="multicolortext">Think<br> Like a <br>Designer</span></h1>
</div>
</section>
</header>
<!-- Gradient -->
<div class="slider" style="height: 100vh;"></div>
<!-- image slider -->
<div class="slideshow-container">
<div class="mySlides fade">
<img src="https://www.tutorialrepublic.com/lib/images/javascript-illustration.png" style="width:100%">
</div>
<div class="mySlides fade">
<img src="https://www.tutorialrepublic.com/lib/images/html-illustration.png" style="width:100%">
</div>
<div class="mySlides fade">
<img src="https://www.tutorialrepublic.com/lib/images/css-illustration.png" style="width:100%">
</div>
</div>
<div style="text-align:center">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>
<!-- Footer -->
<div class="test">
<a href="https://github.com/nileshkaranjit" class="bottom">
<i class="uil uil-github-alt"></i>
</a>
<a href="https://dribbble.com/nileshkaranjit" class="bottom">
<i class="uil uil-dribbble"></i>
</a>
<a href="mailto:(([email protected]))" class="Mail__col_correct">
<i class="uil uil-envelope"></i>
</a>
</div>
<footer>
<p class="footer__copy">© ADBrothers. All right reserved</p>
</footer>
</div>
<!-- Java Script main -->
<script src="./Javascript/app.js"></script>
</body>
</html>