-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject.html
127 lines (115 loc) · 2.77 KB
/
Project.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
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project</title>
<link rel="stylesheet" href="Project.css">
</head>
<body>
<header>
<nav>
<ul class="nav_link">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="#">Projects</a>
</li>
<li>
<a href="#">Blog</a>
</li>
<li>
<a href="#">More</a>
</li>
<li>
<a href="#">Contact</a>
</li>
</ul>
</nav>
</header>
<h1 class="header">Our <span class="span">Projects</span></h1>
<section>
<div class="flex-container">
<img src="resources/photo1.jpg" class="flex-item2" alt=" a project">
<div class="h2p">
<h2>What We Do?</h2>
<p> Our Project is a platform where you can
build and improve your programming skills.
</p>
</div>
</div>
</section>
<section>
<div class="flex-container">
<div class="flex-item3">
<h2>Why We Are Here?</h2>
<p> We are here to bring out skills but,specially
to bring more women into tech by traing them and
making tech accessible for them to learn and improve
their skills
</p>
</div>
<img src="resources/photo2.jpg" class="flex-item4" alt="a project">
</div>
</section>
<section>
<div class="flex-container">
<img src="resources/photo1.jpg" class="flex-item2" alt=" a project">
<div class="h2p">
<h2>Is This Platform Only For Women?</h2>
<p>Not exactly but technicly yes cause we
believe women are the future tech.
</p>
</div>
</div>
</section>
<section class="white">
<div class="flex-container">
<img src="resources/photo2.jpg" class="design" alt=" a project">
<div class="h2p">
<h2>join the community and begin learning</h2>
</div>
</div>
</section>
<section class="cornflowerblue">
<div class="flex-container">
<div class="flex-item3">
<h2 class="texts">Check our community projects</h2>
</div>
<button class="project">
Projects
</button>
</div>
</section>
<footer>
<div>
<ul>
<li>Home</li>
<li>Contact</li>
</ul>
</div>
<div>
<ul>
<li>About</li>
<li>Programs</li>
</ul>
</div>
<div>
<ul>
<li>Projects</li>
<li>Aluminis</li>
</ul>
</div>
<div>
<ul>
<li>Career nav community</li>
<li>© 2023</li>
</ul>
</div>
</footer>
</body>
</html>