-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
144 lines (128 loc) · 5.13 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!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" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
/>
<link href="https://fonts.googleapis.com/css?family=Prompt:600&display=swap" rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" href="" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
/>
<link
href="https://fonts.googleapis.com/css?family=Philosopher&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Great+Vibes|Handlee|Poiret+One|Rock+Salt&display=swap"
rel="stylesheet"
/>
<link href="https://fonts.googleapis.com/css?family=Neucha&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://www.jsdelivr.com/package/npm/css3-mediaqueries-js">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/livingston-css3-mediaqueries-js/1.0.0/css3-mediaqueries.min.js">
<link rel="javascript" href="js/typed.js" />
<link rel="stylesheet" href="css/main.css" />
<title>Ubaid Kolad</title>
</head>
<body>
<nav
class="navbar navbar-light navbar-expand-lg fixed-top "
style="background-color: #161A1B;"
>
<a
href="#"
class="navbar-brand"
style="color: #0380AC; font-family: 'Rock Salt', cursive; font-size: 22px;"
>Ubaid Kolad</a
>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsible" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsible">
<ul class="nav ml-auto">
<li class="nav-item">
<a href="#" class="nav-link" style="color: #0380AC"
><strong>Home</strong></a
>
</li>
<li class="nav-item">
<a href="#about" class="nav-link" style="color: #0380AC"
><strong>About</strong></a
>
</li>
<li class="nav-item">
<a href="#contact" class="nav-link" style="color: #0380AC"
><strong>Contact</strong></a
>
</li>
<li class="nav-item">
<a href="#project" class="nav-link" style="color: #0380AC"
><strong>Projects</strong></a
>
</li>
</ul>
</div>
</nav>
<div
style="background-image: url('img/bg.jpg'); background-size: cover;"
id="home"
class="expand-col-sm-12"
>
<div id="typedd">
<h1>I am <span id="typed"></span></h1>
</div>
<p id="scroll">Want to know more? Scroll.</p>
</div>
<div
id="contact"
style="background-image: url('img/smcontact.jpg'); background-size: cover; height:100%; width: auto;"
>
<div class="container" id="icon1">
<a href="#" class=" fa fa-facebook" style="text-decoration: none;" ></a>
<a href="#" class=" fa fa-snapchat" style="text-decoration: none;"></a>
<a href="#" class=" fa fa-instagram" style="text-decoration: none;"></a>
</div>
<div class="container" id="icon2">
<a href="#" class=" fa fa-twitter" style="text-decoration: none;"></a>
<a href="#" class=" fa fa-phone" style="text-decoration: none;"></a>
<a href="#" class="fa fa-envelope" style="text-decoration: none;"></a>
</div>
</div>
<div id="project" style="background-image: url('img/project.jpg'); background-size: cover; height: 100%; opacity: 0.8;">
<h1 id="my-projects">My Projects</h1>
<div class="row">
<div class="jumbotron col-lg-4" id="website">
<h2>My Portfolio Website Using Bootstrap</h2>
<h5>This is my First Website ever since I got into Web Development</h5>
<a href="#" class="btn btn-primary stretched-link" style="align-items: center;">View Website</a>
</div>
</div>
</div>
<div id="about" style="background-image: url('img/about.jpg');
background-size: cover; height: 100%;">
<div class="jumbotron col-lg-6 col-xs-3" id="about-content">
<h1>About Me</h1>
<p>
Hi ! I am Ubaid Kolad. I am a Web Designer.<br />
I also do iPhoneography and Photoshop Manipulations. <br />I am pursuing
my BTech Degree From Rizvi College Of Engineering.
</p>
</div>
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.9"></script>
<script
type="text/javascript"
src="//code.jquery.com/jquery.min.js"
></script>
<script
type="text/javascript"
src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
></script>
<script src="js/typed.js" type="text/javascript"></script>
</body>
</html>