-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.php
64 lines (57 loc) · 1.74 KB
/
profile.php
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
<?php
require "config.php";
include "navbar.php";
include "clock.php";
if (!isset($_SESSION['username'])) {
header("Location: login.php");
session_start();
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Tentang Kami</title>
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/[email protected]/slick/slick.css"/>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/[email protected]/slick/slick-theme.css"/>
<link rel="stylesheet" href="css/profile.css">
</head>
<body>
<div class="position-card">
<div class="profile-card">
<div class="card-header">
<div class="pic">
<img src="profile.png" alt="">
</div>
<div class="name">M Rafi Irfan</div>
<div class="desc">Siswa SMK Bina Informatika Bintaro</div>
<div class="sm">
<a href="#" class="fab fa-facebook-f"></a>
<a href="#" class="fab fa-twitter"></a>
<a href="#" class="fab fa-github"></a>
<a href="https://www.youtube.com/channel/UCQXJ-GCDf9o3RhlKAEUaewg"target="_blank" class="fab fa-youtube"></a>
</div>
<a href="#" class="contact-btn">Contact Me</a>
</div>
<div class="card-footer">
<div class="numbers">
<div class="item">
<span>120</span>
Posts
</div>
<div class="border"></div>
<div class="item">
<span>127</span>
Following
</div>
<div class="border"></div>
<div class="item">
<span>120K</span>
Followers
</div>
</div>
</div>
</div>
</div>
</body>
</html>