Closed. This question is off-topic。它当前不接受答案。
                            
                        
                    
                
                            
                                
                
                        
                            
                        
                    
                        
                            想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
                        
                        3年前关闭。
                                                                                            
                
        
大家好,我正在尝试在新的HTML即将推出的页面上解决此问题:
http://desertcinema.com/coming/

我正在尝试复制此站点的表单代码:

html - 获取HTML和CSS表单代码-LMLPHP

http://shapebootstrap.net/item/1524958-ux-free-responsive-coming-soon-countdown-template-v2/live-demo

知道我如何才能像没有瑕疵一样完全得到它吗?

到目前为止,这是我的HTML:

<!-- Subscribe -->
             <div id="embed_signup">
                <form action="" name="subscribe-form" class="validate" target="_blank" novalidate>

                   <input type="email" value="" name="EMAIL" class="email" id="EMAIL" placeholder="email address" required>

                   <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
                   <div style="position: absolute; left: -5000px;"><input type="text" name="b_cdb7b577e41181934ed6a6a44_e65110b38d" value=""></div>

                   <!-- <div class="clear"> --><input type="submit" value="Subscribe" name="subscribe" id="embedded-subscribe" class="button"><!-- </div> -->

                </form>
             </div>

最佳答案

发现了这一点:

form class="contact-form col-md-6 fade-down validate animated fadeInDown" method="post">
                        <div class="form-group">
                            <div><span class="email-ico"> <i class="fa fa-envelope-o"></i> </span>
                                <input type="email" name="email" id="email" class="required email" placeholder="Enter your email here to stay tuned">
                                <!-- <input type="hidden" value="1" name="submit" /> -->
                                <button id="submit" type="submit" class="btn-submit">Submit</button>
                            </div>
                        </div>
                        <div class="form-respond"></div>
                    </form>

08-19 13:52