-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (105 loc) · 4.45 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
<!DOCTYPE html>
<html>
<head>
<title>Creating Blog</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Nav Start -->
<nav>
<div class="left-side">
<a href="index.html">
<img src="assets/logo.png" />
</a>
<ul>
<li>
<a href="index.html" target="blank">Home</a>
</li>
<li>
<a href="blog.html" target="blank">Blog</a>
</li>
</ul>
</div>
<div class="right-side">
<a href="contact.html">Contact Me</a>
</div>
</nav>
<!-- Nav End -->
<div class="personal">
<div class="container-content">
<div class="left">
<div class="card">
<div class="image">
<img src="assets/Me.png" alt="Me" />
</div>
<div class="header">
<h1>Muhammad Rafly M</h1>
</div>
<div class="content">
<p>I became a superstar to make awesome app and
software to
bring new life for mankind</p>
<table border="1">
<tr>
<th>Experience</th>
<th>Year</th>
</tr>
<tr>
<td>Build App Dumbways.id</td>
<td>2021</td>
</tr>
</table>
</div>
</div>
</div>
<div class="right">
<div>
<h1>What I Do</h1>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been
the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley
of type and scrambled it to make a type specimen book. It has survived not only five centuries,
but also the leap into electronic typesetting, remaining essentially unchanged.
</p>
<div class="skill">
<div>
<img src="assets/js.png" alt="js">
<h3>Frontend Developer</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsum, temporibus
</p>
</div>
<div>
<img src="assets/git.png" alt="git">
<h3>Version Control</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsum, temporibus
</p>
</div>
<div>
<img src="assets/deploy.png" alt="">
<h3>Automated Deployment</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsum, temporibus
</p>
</div>
</div>
<h1>Found Me On</h1>
<div class="sosmed-list">
<a href="https://web.facebook.com/muhammadrafly.mubarakashshudur" target="blank"><img
src="assets/facebook.png" alt="facebook" /></a>
<a href="https://twitter.com/mylfarm" target="blank"><img src="assets/twitter.png"
alt="twitter" /></a>
<a href="https://www.instagram.com/muhammadraflym_/" target="blank"><img
src="assets/instagram.png" alt="instagram" /></a>
<a href="" target="blank"><img src="assets/mail.png" alt="mail" /></a>
<a href="https://www.linkedin.com/in/muhammad-rafly-mubarak-278264225/" target="blank"><img
src="assets/whatsapp.png" alt="whatsapp" /></a>
</div>
</div>
</div>
</div>
</div>
<script src="form.js"></script>
</body>
</html>