-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (98 loc) · 4.1 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
100
101
102
103
104
105
106
107
108
<!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="./CSS/style.css">
<link rel="stylesheet" href="./CSS/responsive.css">
<title>AsuWeb</title>
</head>
<body>
<nav class="navbar background-nav h-nav-resp">
<ul class="nav-list visibility-class-resp ">
<div class="logo"><img src="./image/CodeBitsLogo1.jpg" alt="logo"></div>
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./services.html">Services</a></li>
<li><a href="https://www.youtube.com/channel/UCbMkVBzjjDSmlFZglkBSCqQ" target="_blank">Contact Us</a></li>
</ul>
<div class="right-nav visibility-class-resp">
<input type="text" name="search" id="search">
<button class="btn bt-sm btn-search">Search</button>
</div>
<div class="burger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</nav>
<section class="background-section firstSection">
<div class="main-box">
<div class="firstHalf">
<p class="text-big">Welcome to my Website!</p>
<p class="text-small">Hi Guys this is my first Website hosted by GitHub.</p><br>
<div class="button">
<button class="btn">Blog</button>
<button class="btn">YouTube</button>
<button class="btn">Quora</button>
</div>
</div>
<div class="secondHalf">
<img src="image/CodeBitsLogo1.jpg" alt="secondHalf">
</div>
</div>
</section>
<section class="sectionContent secondSection">
<div class="sectionText">
<p class="text-big">Coding</p>
<p class="text-small">
Computer programming is the process of designing and building an executable computer program for accomplishing a specific computing result.</p>
</div>
<div class="sectionImage">
<img src="./image/code.jpg" alt="Computer">
</div>
</section>
<hr>
<section class=" sectionContent thirdSection">
<div class="sectionText">
<p class="text-big">Music</p>
<p class="text-small">
Music is the art of arranging sounds in time to produce a composition through the elements of melody, harmony, rhythm, and timbre.</p>
</div>
<div class="sectionImage">
<img src="./image/music.jpg" alt="Computer">
</div>
</section>
<hr>
<section class="sectionContent fourthSection">
<div class="sectionText">
<p class="text-big">Art</p>
<p class="text-small">Art is a diverse range of (products of) human activities involving creative imagination to express technical proficiency, beauty, emotional power, or conceptual ideas.</p>
</div>
<div class="sectionImage">
<img src="./image/art.jpg" alt="Computer">
</div>
</section>
<hr>
<section class="contactUs">
<div class="contactHead text-big">
<h1>Contact Us</h1>
</div>
<div class="contactInfo">
<input type="text" class="input-element" name="name" id="name" placeholder="Enter your name">
<input type="text" class="input-element" name="email-id" id="email-id" placeholder="Enter your email">
<input type="text" class="input-element" name="phone-number" id="phone-number"
placeholder="Enter your phone number">
<button class="btn btn-submit">SUBMIT</button>
</div>
</section>
<hr>
<footer>
<div class="copyright">
<p class="text-small">©Copyrights Reserved Asutosh Maharana</p>
</div>
</footer>
<script src="./JS/resp.js"></script>
</body>
</html>