-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmarwaProfile.html
More file actions
64 lines (56 loc) · 1.87 KB
/
Copy pathmarwaProfile.html
File metadata and controls
64 lines (56 loc) · 1.87 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
<!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 rel="stylesheet" href="style.css" class="css" />
<link
rel="stylesheet"
href="https://unpkg.com/boxicons@latest/css/boxicons.min.css"
/>
<title>Profile</title>
</head>
<body>
<header class="header">
<h2 class="logo"><a href="#">Gaming Community</a></h2>
<ul>
<li><a href="marwaMainPage.html" class="active">Home</a></li>
<li><a href="#">Challenges</a></li>
<li><a href="#">Tips</a></li>
<li><a href="">Trends</a></li>
<li><a href="#">Contact</a></li>
</ul>
</header>
<section>
<div class="divider">
<div class="left-side">
<div class="left-content">
<img src="marwaPic.jpeg" alt="pic">
<h1>Hi There! it's <span>@marwamagdyx!</span> </h1>
<p>I'm a student at FUE.</p>
<p>I like various amount of things, but mainly, GAMES! <br>
let's share some of our tips and tricks and mostly, play and challenge each other!
</p>
<div class="boxes">
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
</div>
</div>
</div>
<div class="right-side">
<div class="right-content">
<h5>Write a new tip!</h5>
<div class="form">
<form>
<input type="text" placeholder="Prompt..">
<button id="submit" >Submit</button>
</form>
</div>
</div>
</div>
</section>
<script src="main.js"></script>
</body>
</html>