-
Notifications
You must be signed in to change notification settings - Fork 0
/
1.html
executable file
·74 lines (70 loc) · 3.34 KB
/
1.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>Straw To Gold</title>
<link rel="stylesheet" href="css/style.css" />
<script type="text/javascript" src="js/jQuery_v1.8.3.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</head>
<body>
<div id="wrapper">
<div id="header">
<div id="logo" class="homeDetail">
<a href="javascript://"><img src="images/logo.png" title="Straw To Gold" alt="Straw To Gold" /></a>
</div>
<div id="mainNav">
<a href="javascript://"><img src="images/previous-btn.png" id="previousBtn" /></a>
<a href="2.html"><img src="images/next-btn.png" id="nextBtn" /></a>
</div>
<div id="qoutesContainer">
<div class="qouteHome">
<h1>Book Publishing made easy</h1>
<p>We devlop new technologies...</p>
</div>
</div>
<div id="credits">
SG did: <span class="blue">Concept</span>, <span class="blue">Strategy</span>, <span class="blue">Design</span>, <span class="blue">Development</span>, <span class="blue">Front-End</span>
</div>
</div>
<div id="content">
<div class="oneHalf">
<div class="oneFourth">
<div class="portfolioImg">
<img src="images/projects/book/top-left.jpg" />
</div>
</div>
<div class="oneFourth">
<div class="portfolioImg">
<img src="images/projects/book/left.jpg" />
</div>
</div>
</div>
<div class="oneHalf">
<div class="portfolioImg">
<img src="images/projects/book/right.jpg" />
</div>
</div>
<div class="portfolioImg">
<img src="images/projects/book/large-btm.jpg" />
</div>
<div class="break"></div>
</div>
<div id="footer">
<div id="contactContainer">
<div id="contactText">
<p>Contact Us >></p>
</div>
<div id="contactForm">
<form id="contactusForm" action="">
<input type="text" id="name" value="Full Name" onfocus="if(this.value == 'Full Name') this.value = ''" onblur="if(this.value =='') this.value = 'Full Name'" />
<input type="text" id="email" value="Email Address" onfocus="if(this.value == 'Email Address') this.value = ''" onblur="if(this.value =='') this.value = 'Email Address'" />
<input type="text" id="message" value="Message" onfocus="if(this.value == 'Message') this.value = ''" onblur="if(this.value =='') this.value = 'Message'" />
<input type="submit" id="submit" value="" />
</form>
</div>
</div>
</div>
</div>
</body>
</html>