-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (92 loc) · 4.01 KB
/
Copy pathindex.html
File metadata and controls
110 lines (92 loc) · 4.01 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
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<title>Assignmnet 01 HTML CSS</title>
</head>
<body>
<!-- Nav Bar -->
<ul class="Nav-ul">
<li><a href="#contact">Contact</a></li>
<li><a href="#Project">Work</a></li>
<li><a href="#about">About</a></li>
</ul>
<!-- Banner Section -->
<div class="banner-section" id="about">
<h1 class="Banner-section-h1">Hey I'm Hassan</h1>
<h3 class="banner-section-h3">a Mern Stack Developer</h3>
</div>
<!-- Cards Columns -->
<div class="card-container" id="Project">
<h1 class="cards-h1">These are some of my projects</h1><br><br>
</div>
<div class="cards">
<div class="row">
<div class="column">
<div class="card">
<img src="images/image1.jpg" width="395px" height="450px">
<h3 class="under-img-h3">Tribute Page</h3>
</div>
</div>
<div class="column">
<div class="card">
<img src="images/image2.png" width="395px" height="450px">
<h3 class="under-img-h3">Random Quote Machine</h3>
</div>
</div>
<div class="column">
<div class="card">
<img src="images/image3.png" width="395px" height="450px">
<h3 class="under-img-h3">Javascript Calculator</h3>
</div>
</div>
</div>
<br><br>
<div class="cards-container">
<div class="row">
<div class="column">
<div class="card">
<img src="images/image4.jpg" width="395px" height="450px">
<h3 class="under-img-h3">Map Data Across the Globe</h3>
</div>
</div>
<div class="column">
<div class="card">
<img src="images/image5.png" width="395px" height="450px">
<h3 class="under-img-h3">Wikipedia Viewer</h3>
</div>
</div>
<div class="column">
<div class="card">
<img src="images/image6.png" width="395px" height="450px">
<h3 class="under-img-h3">Tic Tac Toe Game</h3>
</div>
</div>
</div>
<br><br>
<div class="cards-container">
<!-- <button class="end-btn"> Show All<i class="fa fa-chevron-right"></i></button> -->
<button class="end-btn"> Show All</button><br><br>
</div>
<!-- Last Container -->
<div class="last-container" id="contact">
<h1 class="last-h1">Let's work together...</h1>
<p class="last-p">How do you take your coffee?</p> <br><br>
<div class="icons-div">
<a href="#" class="fa fa-facebook" > Facebook</a>
<a href="#" class="fa fa-twitter"> Twitter</a>
<a href="#" class="fa fa-google"> Send a Mail</a>
<a href="#" class="fa fa-phone"> Phone</a>
<a href="#" class="fa fa-github"> Github</a>
</div>
</div>
<!-- Footer Section -->
<div class="footer-line"></div>
<div class="footer">
<p class="footer-p">**This is just a fake portfolio. All the projects and contact details given are not real.</p>
</div>
</body>
</html>