forked from adi112100/FirstWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
137 lines (93 loc) · 4.01 KB
/
main.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
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Karla&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Ubuntu&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style1.css">
<title>Home</title>
</head>
<body>
<header class="header">
<div class="left">
<img src="/logo.png" alt="loading">
<div class="left_font">ASM Studio</div>
</div>
<div class="mid">
<ul class="navbar">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="online.html">Go Online</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="right">
<button class="btn" id="btn1"
onclick="location.href='https://www.linkedin.com/in/aditya-morankar-488b2b182/'"><img
src="/linkedln.png" alt=""></button>
<button class="btn" id="btn2"
onclick="location.href='https://www.youtube.com/channel/UC8-Tk4WjCa1BGjEcWGunvgg/videos'"><img
src="/youtube.png" alt=""></button>
<button class="btn" id="btn3"
onclick="location.href='https://www.facebook.com/aditya.morankar.1?ref=bookmarks'"><img
src="/facebook.png" alt=""></button>
</div>
<div class="textt">
<h1>This is ASM Studio!</h1>
<h3>by Aditya Morankar</h3>
</div>
<div class="textt1">
<h1>This is ASM Studio!</h1>
<h3>by Aditya Morankar</h3>
</div>
</header>
<header class="header1">
<div class="container">
<div class="box" id="box1">
<iframe width="450" height="300" src="https://www.youtube.com/embed/Z2MmQATqTFU?autoplay=0"></iframe>
<p><strong>GoalIT</strong><br><br>
Its hypercasual game.<br>
Easy to play and simple controls.<br>
Get to the goal and avoid all obstacles.<br>
Be aware of spikes.<br>
intresting levels are waiting for you.<br>
Enjoy !!!
</p>
</div>
<div class="box" id="box2">
<iframe width="450" height="300" src="https://www.youtube.com/embed/uDM23sDEeEE?autoplay=0"></iframe>
<p><strong>Mr.Amoeba</strong><br><br>
Player needs to control character name amoeba, <br>
Food will be instantiate in arena,player use to grab food. <br>
There are enemies which use to follow and kill us, <br>
all we need to shoot them. <br>
There is one special power-up which help player to kill enemies.
</p>
</div>
<div class="box" id="box3">
<iframe width="450" height="300" src="https://www.youtube.com/embed/04pzbNqQ36c?autoplay=0"></iframe>
<p><strong>ASM racing</strong><br><br>
This was my first project developed back in 2016. <br>
I had used Unity Standard Asset for 3d models. <br>
I tried to manipulate graphics using post processing and render pipelines.
</p>
</div>
</div>
<div class="back_2"></div>
</div>
</header>
<script>
function check_width()
{
if(screen.availWidth< 1800)
{
console.log("invalid");
alert("Sorry, Your device isn't compatible, This website is optimize only for desktop");
}
}
setInterval(check_width, 3000);
</script>
</body>
</html>