-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.htm
More file actions
100 lines (81 loc) · 4.24 KB
/
index.htm
File metadata and controls
100 lines (81 loc) · 4.24 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link rel="stylesheet" href="csss/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<title>My Web Site</title>
</head>
<body class="containera">
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav nav-tabs bg-dark justify-content-center">
<li class="nav-item">
<a class="nav-link active" href="index.htm"><i class="fas fa-home"></i> Homepage</a>
</li>
<li class="nav-item">
<a class="nav-link" href="books.htm"><i class="fas fa-book"></i> Books</a>
</li>
<li class="nav-item">
<a class="nav-link" href="films.htm"><i class="fas fa-film"></i> Films</a>
</li>
<li class="nav-item">
<a class="nav-link" href="musics.htm"><i class="fas fa-music"></i> Musics</a>
</li>
<li class="nav-item">
<a class="nav-link" href="usefullinks.htm"><i class="fas fa-align-justify"></i> Useful Links</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contactme.htm"><i class="fas fa-envelope"></i> Conctact Me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="registration.htm"><i class="fas fa-registered"></i> Register</a>
</li>
</ul>
</div>
</nav>
<br>
<div class="container-fluid">
<div class="row no-gutter align-items-center">
<div class="d-md-flex col-12 col-md-6"><div class="transbox"><p><b style="color:rgba(255, 127, 80, 1)" >Hi! I'm Batuhan Sert.</b><br>I was born in 03/01/1997.<br>Right now, I'm studying at Eskisehir Technical University and it's my secondy year in this university.<br>My department is Computer Engineering.<br>I've have several hobbies.These are watching F1, football, playing computer games... <br><br><i>If you want to contact me, please click <a href="contactme.htm">'Contact me'</a> page</i></p></div></div>
<div class="col-12 col-md-8 col-lg-6">
<div class="login d-flex align-items-center py-5">
<div class="container">
<div class="row">
<div class="col-md-9 col-lg-8 mx-auto">
<h3 class="login-heading mb-4"><b>Welcome!</b></h3>
<form>
<div class="form-label-group">
<input type="text" id="Username" class="form-control" placeholder="Username" required>
<label for="Username">Username</label>
</div>
<div class="form-label-group">
<input type="password" id="inputPassword" class="form-control" placeholder="Password" required>
<label for="inputPassword">Password</label>
</div>
<div class="custom-control custom-checkbox mb-3">
<input type="checkbox" class="custom-control-input" id="customCheck1">
<label class="custom-control-label" for="customCheck1" style="color: #ff7f50">Remember password</label>
</div>
<button class="btn btn-lg btn-primary btn-block btn-login text-uppercase font-weight-bold mb-2" type="submit">Sign in</button>
<div class="text-center">
<a class="small" href="#">Forgot password?</a></div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>