-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (112 loc) · 5.59 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!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 href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<link rel="icon" href="images/favicon.ico">
<script src="https://kit.fontawesome.com/7a52e9e5f1.js" crossorigin="anonymous"></script>
<title>DibyaDoes</title>
</head>
<body>
<header>
<!-- navbar -->
<nav class="navbar navbar-expand-md navbar-dark">
<div class="container-fluid">
<a class="navbar-brand ps-2 logo" href="#"><img src="images/Image004.png" alt="logo" width="100px" height="50px"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarTogglerDemo01" aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo01">
<ul class="navbar-nav ms-auto pe-2 navi">
<li class="nav-item">
<a class="nav-link active" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact Me</a>
</li>
</div>
</nav>
<div class="row gx-0">
<!-- fixed the gutter issue see by removing the gx class -->
<div class="col-lg-6">
<section class="title">
<h1>Hello there!</h1>
<h2>Let's take you on a ride..</h2>
</section>
</div>
<div class="col-lg-6 title-img">
<img src="images/dp.png" width="80%" alt="">
</div>
</div>
</header>
<main>
<!-- note section -->
<section class="about row">
<!-- <div class=""> -->
<div class="col-lg-4">
<img class="about-rkt" src="images/cartoon-rocket-launch.png" alt="rocket">
</div>
<div class="col-lg-8 about-col">
<h1>A note for you</h1>
<p>I created this website literally just after learning css and html in a month😁.Its created from scratch using the bootstrap framework and font awesome icons.</p>
</div>
<!-- </div> -->
</section>
<!-- Content -->
<section id="content">
<section class="content-header">Latest</section>
<div id="contentitems" class="carousel slide" data-bs-ride="false">
<div class="carousel-indicators">
<button type="button" data-bs-target="#contentitems" data-bs-slide-to="0" class="active"></button>
<button type="button" data-bs-target="#contentitems" data-bs-slide-to="1"></button>
</div>
<div class="carousel-inner" style="padding-bottom: 5%;">
<div class="carousel-item active ">
<h2 class="content-text">Recently went to Banglore.It was one of kind of an experience.Tech parks,Wonderla,Museums,<br>Malls and much more!</h2>
<img class="content-img" src="images/banglore.jpg" alt="bangalore">
<em>10/04/23</em>
</div>
<div class="carousel-item ">
<h2 class="content-text">This is my first go to a blog/portfolio.Would surely appreciate your feedback.Click the below button to connect!</h2>
<img class="content-img" src="images/blog.jpg" alt="My-profile">
<em>Creator</em>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#contentitems" data-bs-slide="prev">
<span class="carousel-control-prev-icon"></span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#contentitems" data-bs-slide="next">
<span class="carousel-control-next-icon"></span>
</button>
</div>
</section>
</main>
<div class="button-section">
<button type="button" class="btn btn-lg btn-dark inputdropdownbtn"><i class="fa-regular fa-envelope"></i> Connect</button>
</div>
<form action="mailto:dibyacollege@gmail.com" method="post" enctype="text/plain" class="form" style="text-align: center;padding: 2%;">
<div id = "txtarea">
<textarea class="form-control-lg" name="message" value="" placeholder="Type your message here!"></textarea>
</div>
<!-- issue with the submit button how to clear the text after submitting and how to redirect to the same website after submitting -->
<input type="submit" value="submit" class="btn btn-secondary submitbtn">
</form>
<footer>
<div class="footer-text">
<p>© Copyright Dibyashakti Moharana</p>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="index.js"></script>
</body>
</html>