-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (69 loc) · 2.36 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
<!DOCTYPE html>
<html>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Goldman&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="project1.css" media="screen" />
<head>
<title>Sign in Page</title>
<style></style>
<body>
<div class="mainContainer">
<div class="logo">
<img
src="https://ishrathee514.github.io/Frontend-Project1/SOftware_Wt.png"
alt=""
class="logoImage"
/>
</div>
<div class="signup">
<div class="flex1"></div>
<div class="mainBox">
<div class="heading">Sign in</div>
<div class="usname">
<label class="labelText">UserName : </label
><input type="text" placeholder="Username" />
</div>
<div class="usname">
<label class="labelText"> Password : </label>
<input type="password" placeholder="password" />
</div>
<div class="button">
<button class="submit" type="Submit" value="Submit">
<strong class="btnText">Submit</strong>
</button>
</div>
<div class="forgetpass"><a href="#">Forget Password</a></div>
</div>
<div class="flex1"></div>
</div>
<div class="Software">
<div class="inner">
<strong> <code> IEEE SSIT</code></strong>
<span
style="
font-family: markscript;
font-weight: bold;
background-color: #150040;
background-image: linear-gradient(145deg, #462e75, #705c99);
background-repeat: repeat;
background-size: 100%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-style: italic;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
"
>
Software</span
>
<strong><code>Portal.</code></strong>
</div>
</div>
</div>
</body>
</head>
</html>