-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
78 lines (55 loc) · 2.29 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> Weta || Welcome .. </title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body style="background:darkslategray;">
<header>
<div class="header">
<a href="index.html" class="logo"><img src="images/logo_webby.jpg" width="50px" height="50px"></img></a>
<nav class="header-right">
<a href="home.html" id="home">Home</a>
<a class="active" href="about.html" id="about">About</a>
<a href="contact.html" id="contact">Contact</a>
<a href="join_us.html" id="our_goal">Join Us</a>
</nav>
</div>
</header>
<section id="aboutus">
<div id="leftus" style="margin:10px 1% 0 1%; box-shadow:2px 2px 2px 2px orange; border:3% solid forestgreen; border-radius: 20px;float:left; width:65%; height:500px; background: silver;" >
<div style="width:80%; height:50px ; margin-left:10%; background:darkslategray; ">
<div style="background:silver;margin-left:46%; width:8%; height:50px; border-radius:10px; ">
<img src="images/info.png" width="56px" height="50px">
</div>
</div>
<div style="width:80%; height:300px ; box-shadow:4px 4px 4px 4px #333; border-radius:20px; margin-top:70px;margin-left:10%; background:salmon; ">
<div style=" width: 80%; height:200px; color:orange; text-align: center; background:darkslategray;margin-left:10% ;">
<br>
<br>
I am Student in NIT Silchar.
<br>
<br>
<br>
I like building the Websites.
</div>
</div>
</div>
<div id="rightus" style="margin:10px 1% 0 1%; box-shadow:4px 4px 4px 4px coral; border:3% solid forestgreen; border-radius:20px ;float:right; width:30%; height:500px; background:silver;">
<div style="width:80%; color:white; height:300px ; box-shadow:4px 4px 4px 4px #333; border-radius:20px; margin-top:70px;margin-left:10%; background:lightsalmon; text-align: center; float:right">
<div style="width:80%; color:white; height:300px ; box-shadow:4px 4px 4px 4px #333; border-radius:20px; margin-top:70px;margin-left:10%; background:gray; text-align: center; float:right">
<br>
<br>
<br>
Happy Journey
<br>
<br>
<br>
Have a Nice Day !!!!!!!!!!
</div>
</div>
</div>
</section>
</body>
</html>